diff --git a/src/NCollection/NCollection_DataMap.hxx b/src/NCollection/NCollection_DataMap.hxx index 2f9363677d..779bdecea6 100644 --- a/src/NCollection/NCollection_DataMap.hxx +++ b/src/NCollection/NCollection_DataMap.hxx @@ -140,10 +140,13 @@ public: public: // ---------- PUBLIC METHODS ------------ + //! Empty Constructor. + NCollection_DataMap() : NCollection_BaseMap (1, Standard_True, Handle(NCollection_BaseAllocator)()) {} + //! Constructor - NCollection_DataMap (const Standard_Integer NbBuckets=1, - const Handle(NCollection_BaseAllocator)& theAllocator = 0L) - : NCollection_BaseMap (NbBuckets, Standard_True, theAllocator) {} + explicit NCollection_DataMap (const Standard_Integer theNbBuckets, + const Handle(NCollection_BaseAllocator)& theAllocator = 0L) + : NCollection_BaseMap (theNbBuckets, Standard_True, theAllocator) {} //! Copy constructor NCollection_DataMap (const NCollection_DataMap& theOther) diff --git a/src/NCollection/NCollection_DoubleMap.hxx b/src/NCollection/NCollection_DoubleMap.hxx index 3f67d426d6..5f1743423e 100644 --- a/src/NCollection/NCollection_DoubleMap.hxx +++ b/src/NCollection/NCollection_DoubleMap.hxx @@ -123,10 +123,13 @@ public: public: // ---------- PUBLIC METHODS ------------ + //! Empty constructor. + NCollection_DoubleMap() : NCollection_BaseMap (1, Standard_False, Handle(NCollection_BaseAllocator)()) {} + //! Constructor - NCollection_DoubleMap (const Standard_Integer NbBuckets=1, - const Handle(NCollection_BaseAllocator)& theAllocator = 0L) - : NCollection_BaseMap (NbBuckets, Standard_False, theAllocator) {} + explicit NCollection_DoubleMap (const Standard_Integer theNbBuckets, + const Handle(NCollection_BaseAllocator)& theAllocator = 0L) + : NCollection_BaseMap (theNbBuckets, Standard_False, theAllocator) {} //! Copy constructor NCollection_DoubleMap (const NCollection_DoubleMap& theOther) diff --git a/src/NCollection/NCollection_IndexedDataMap.hxx b/src/NCollection/NCollection_IndexedDataMap.hxx index da2c6856f1..45fa17dc01 100644 --- a/src/NCollection/NCollection_IndexedDataMap.hxx +++ b/src/NCollection/NCollection_IndexedDataMap.hxx @@ -162,10 +162,13 @@ private: public: // ---------- PUBLIC METHODS ------------ + //! Empty constructor. + NCollection_IndexedDataMap() : NCollection_BaseMap (1, Standard_False, Handle(NCollection_BaseAllocator)()) {} + //! Constructor - NCollection_IndexedDataMap (const Standard_Integer NbBuckets=1, - const Handle(NCollection_BaseAllocator)& theAllocator = 0L) - : NCollection_BaseMap (NbBuckets, Standard_False, theAllocator) {} + explicit NCollection_IndexedDataMap (const Standard_Integer theNbBuckets, + const Handle(NCollection_BaseAllocator)& theAllocator = 0L) + : NCollection_BaseMap (theNbBuckets, Standard_False, theAllocator) {} //! Copy constructor NCollection_IndexedDataMap (const NCollection_IndexedDataMap& theOther) diff --git a/src/NCollection/NCollection_IndexedMap.hxx b/src/NCollection/NCollection_IndexedMap.hxx index fe3c4a7f77..c0a66cd4e0 100644 --- a/src/NCollection/NCollection_IndexedMap.hxx +++ b/src/NCollection/NCollection_IndexedMap.hxx @@ -124,10 +124,13 @@ private: public: // ---------- PUBLIC METHODS ------------ + //! Empty constructor. + NCollection_IndexedMap() : NCollection_BaseMap (1, Standard_False, Handle(NCollection_BaseAllocator)()) {} + //! Constructor - NCollection_IndexedMap (const Standard_Integer NbBuckets=1, - const Handle(NCollection_BaseAllocator)& theAllocator=0L) - : NCollection_BaseMap (NbBuckets, Standard_False, theAllocator) {} + explicit NCollection_IndexedMap (const Standard_Integer theNbBuckets, + const Handle(NCollection_BaseAllocator)& theAllocator=0L) + : NCollection_BaseMap (theNbBuckets, Standard_False, theAllocator) {} //! Copy constructor NCollection_IndexedMap (const NCollection_IndexedMap& theOther) diff --git a/src/NCollection/NCollection_List.hxx b/src/NCollection/NCollection_List.hxx index ded27c56d9..7ce1eaa1ed 100644 --- a/src/NCollection/NCollection_List.hxx +++ b/src/NCollection/NCollection_List.hxx @@ -58,9 +58,11 @@ public: public: // ---------- PUBLIC METHODS ------------ + //! Empty constructor. + NCollection_List() : NCollection_BaseList(Handle(NCollection_BaseAllocator)()) {} + //! Constructor - NCollection_List(const Handle(NCollection_BaseAllocator)& theAllocator=0L) : - NCollection_BaseList(theAllocator) {} + explicit NCollection_List(const Handle(NCollection_BaseAllocator)& theAllocator) : NCollection_BaseList(theAllocator) {} //! Copy constructor NCollection_List (const NCollection_List& theOther) : diff --git a/src/NCollection/NCollection_LocalArray.hxx b/src/NCollection/NCollection_LocalArray.hxx index 20580cc31c..06050493f7 100644 --- a/src/NCollection/NCollection_LocalArray.hxx +++ b/src/NCollection/NCollection_LocalArray.hxx @@ -24,7 +24,7 @@ template class NCollectio { public: - NCollection_LocalArray (const size_t theSize) + explicit NCollection_LocalArray (const size_t theSize) : myPtr (myBuffer) { Allocate(theSize); diff --git a/src/NCollection/NCollection_Map.hxx b/src/NCollection/NCollection_Map.hxx index 6e12dd8750..459c4f2c7d 100644 --- a/src/NCollection/NCollection_Map.hxx +++ b/src/NCollection/NCollection_Map.hxx @@ -119,10 +119,13 @@ public: public: // ---------- PUBLIC METHODS ------------ + //! Empty constructor. + NCollection_Map() : NCollection_BaseMap (1, Standard_True, Handle(NCollection_BaseAllocator)()) {} + //! Constructor - NCollection_Map (const Standard_Integer NbBuckets = 1, - const Handle(NCollection_BaseAllocator)& theAllocator = 0L) : - NCollection_BaseMap (NbBuckets, Standard_True, theAllocator) {} + explicit NCollection_Map (const Standard_Integer theNbBuckets, + const Handle(NCollection_BaseAllocator)& theAllocator = 0L) + : NCollection_BaseMap (theNbBuckets, Standard_True, theAllocator) {} //! Copy constructor NCollection_Map (const NCollection_Map& theOther) : diff --git a/src/NCollection/NCollection_Sequence.hxx b/src/NCollection/NCollection_Sequence.hxx index f50896cf02..1162164bb6 100644 --- a/src/NCollection/NCollection_Sequence.hxx +++ b/src/NCollection/NCollection_Sequence.hxx @@ -108,9 +108,11 @@ public: public: // ---------- PUBLIC METHODS ------------ + //! Empty constructor. + NCollection_Sequence() : NCollection_BaseSequence(Handle(NCollection_BaseAllocator)()) {} + //! Constructor - NCollection_Sequence(const Handle(NCollection_BaseAllocator)& theAllocator=0L) : - NCollection_BaseSequence(theAllocator) {} + explicit NCollection_Sequence (const Handle(NCollection_BaseAllocator)& theAllocator) : NCollection_BaseSequence(theAllocator) {} //! Copy constructor NCollection_Sequence (const NCollection_Sequence& theOther) : diff --git a/src/NCollection/NCollection_SparseArray.hxx b/src/NCollection/NCollection_SparseArray.hxx index 2d50b4925c..ade83bceb6 100644 --- a/src/NCollection/NCollection_SparseArray.hxx +++ b/src/NCollection/NCollection_SparseArray.hxx @@ -49,7 +49,7 @@ template class NCollection_SparseArray public: //! Constructor; accepts size of blocks - NCollection_SparseArray (Standard_Size theIncrement) + explicit NCollection_SparseArray (Standard_Size theIncrement) : NCollection_SparseArrayBase(sizeof(TheItemType),theIncrement) { } diff --git a/src/NCollection/NCollection_UBTree.hxx b/src/NCollection/NCollection_UBTree.hxx index f8c12d0ed0..412f737b30 100644 --- a/src/NCollection/NCollection_UBTree.hxx +++ b/src/NCollection/NCollection_UBTree.hxx @@ -237,18 +237,16 @@ public: // ---------- PUBLIC METHODS ---------- + /** + * Empty constructor. + */ + NCollection_UBTree() : myRoot(0L), myLastNode(0L), myAlloc (NCollection_BaseAllocator::CommonBaseAllocator()) {} + /** * Constructor. */ - NCollection_UBTree - (const Handle(NCollection_BaseAllocator)& theAllocator=0L) - : myRoot(0L), myLastNode(0L) - { - if (theAllocator.IsNull()) - myAlloc = NCollection_BaseAllocator::CommonBaseAllocator(); - else - myAlloc = theAllocator; - } + explicit NCollection_UBTree (const Handle(NCollection_BaseAllocator)& theAllocator) + : myRoot(0L), myLastNode(0L), myAlloc (!theAllocator.IsNull() ? theAllocator : NCollection_BaseAllocator::CommonBaseAllocator()) {} /** * Update the tree with a new object and its bounding box.