Added the explicit calls to the base class ctors in eoXXXGeneralBounds copy Ctors
This commit is contained in:
parent
8c36a1274b
commit
fbdc899585
2 changed files with 2 additions and 2 deletions
|
|
@ -548,7 +548,7 @@ public:
|
|||
}
|
||||
|
||||
/** Need a Cpy Ctor because we are allocating memory */
|
||||
eoGeneralIntBounds(const eoGeneralIntBounds & _b)
|
||||
eoGeneralIntBounds(const eoGeneralIntBounds & _b) : eoIntBounds(_b)
|
||||
{
|
||||
// replicate the embedded bound (I'm pretty sure there is another
|
||||
// way to do that !!!
|
||||
|
|
|
|||
|
|
@ -513,7 +513,7 @@ public:
|
|||
}
|
||||
|
||||
/** Need a Cpy Ctor because we are allocating memory */
|
||||
eoGeneralRealBounds(const eoGeneralRealBounds & _b)
|
||||
eoGeneralRealBounds(const eoGeneralRealBounds & _b):eoRealBounds(_b)
|
||||
{
|
||||
// replicate the embedded bound (I'm pretty sure there is another
|
||||
// way to do that !!!
|
||||
|
|
|
|||
Reference in a new issue