From 66c79aabe6504002afaf5cffafa8932495934fe0 Mon Sep 17 00:00:00 2001 From: Thorsten Liebig Date: Mon, 4 Oct 2010 16:48:46 +0200 Subject: [PATCH] mur-abc extension copy-constructor should be protected --- FDTD/operator_ext_mur_abc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FDTD/operator_ext_mur_abc.h b/FDTD/operator_ext_mur_abc.h index 0ece933..e05a7d0 100644 --- a/FDTD/operator_ext_mur_abc.h +++ b/FDTD/operator_ext_mur_abc.h @@ -28,7 +28,6 @@ public: Operator_Ext_Mur_ABC(Operator* op); ~Operator_Ext_Mur_ABC(); - Operator_Ext_Mur_ABC(Operator* op, Operator_Ext_Mur_ABC* op_ext); virtual Operator_Extension* Clone(Operator* op); //! Define the direction of this ABC: \a ny=0,1,2 -> x,y,z and if at bottom_ny -> e.g. x=0 or x=end @@ -49,6 +48,7 @@ public: virtual void ShowStat(ostream &ostr) const; protected: + Operator_Ext_Mur_ABC(Operator* op, Operator_Ext_Mur_ABC* op_ext); void Initialize(); int m_ny; int m_nyP,m_nyPP;