From fbdc8995855f3b128aee70b5c1ef697a5b786d71 Mon Sep 17 00:00:00 2001 From: evomarc Date: Mon, 27 Dec 2004 07:33:03 +0000 Subject: [PATCH] Added the explicit calls to the base class ctors in eoXXXGeneralBounds copy Ctors --- eo/src/utils/eoIntBounds.h | 2 +- eo/src/utils/eoRealBounds.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eo/src/utils/eoIntBounds.h b/eo/src/utils/eoIntBounds.h index 48488b50..59c98c03 100644 --- a/eo/src/utils/eoIntBounds.h +++ b/eo/src/utils/eoIntBounds.h @@ -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 !!! diff --git a/eo/src/utils/eoRealBounds.h b/eo/src/utils/eoRealBounds.h index 691b9b1e..12cb7b46 100644 --- a/eo/src/utils/eoRealBounds.h +++ b/eo/src/utils/eoRealBounds.h @@ -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 !!!