diff --git a/src/TColStd/TColStd_PackedMapOfInteger.hxx b/src/TColStd/TColStd_PackedMapOfInteger.hxx index 47b4f807ba..a0dd633a35 100644 --- a/src/TColStd/TColStd_PackedMapOfInteger.hxx +++ b/src/TColStd/TColStd_PackedMapOfInteger.hxx @@ -37,6 +37,12 @@ class TColStd_PackedMapOfInteger : private TCollection_BasicMap : TCollection_BasicMap (NbBuckets, Standard_True), myExtent (0) {} + /// Copy constructor + inline TColStd_PackedMapOfInteger (const TColStd_PackedMapOfInteger& theOther) + : TCollection_BasicMap (1, Standard_True), + myExtent (0) + { Assign(theOther); } + inline TColStd_PackedMapOfInteger& operator = (const TColStd_PackedMapOfInteger& Other) { return Assign(Other); } @@ -210,11 +216,6 @@ public: private: - // ----------- PRIVATE (PROHIBITED) methods - /// Copy constructor - prohibited. - TColStd_PackedMapOfInteger (const TColStd_PackedMapOfInteger& theOther); - - // ---------- PRIVATE FIELDS ---------- size_t myExtent; diff --git a/src/TCollection/TCollection_Sequence.cdl b/src/TCollection/TCollection_Sequence.cdl index c06c9524cb..b7a6d2f963 100644 --- a/src/TCollection/TCollection_Sequence.cdl +++ b/src/TCollection/TCollection_Sequence.cdl @@ -70,11 +70,8 @@ is -- assignment operator (operator=). ---C++: inline - Create(Other : Sequence) returns Sequence from TCollection + Create(Other : Sequence) returns Sequence from TCollection; ---Purpose: Creation by copy of existing Sequence. - -- Warning: This constructor prints a warning message. - -- We recommand to use the operator =. - is private; Clear(me : in out); ---Purpose: Removes all element(s) of the sequence diff --git a/src/TCollection/TCollection_Sequence.lxx b/src/TCollection/TCollection_Sequence.lxx index ac8a0bedee..3b060fdeb3 100644 --- a/src/TCollection/TCollection_Sequence.lxx +++ b/src/TCollection/TCollection_Sequence.lxx @@ -23,6 +23,16 @@ inline TCollection_Sequence::TCollection_Sequence() { } +//======================================================================= +//function : Copy constructor +//purpose : +//======================================================================= + +inline TCollection_Sequence::TCollection_Sequence(const TCollection_Sequence& theOther) +{ + Assign(theOther); +} + //======================================================================= //function : Append //purpose : Appends a Sequence to myself