From 3a5a656c15e547f528178ebad60fefffc69275bc Mon Sep 17 00:00:00 2001 From: abv Date: Mon, 26 Sep 2016 10:32:06 +0300 Subject: [PATCH] 0027794: A danger in the 'NCollection_Vector' initializing constructor Constructor of NCollection_Vector is now declared as explicit. --- src/NCollection/NCollection_Vector.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NCollection/NCollection_Vector.hxx b/src/NCollection/NCollection_Vector.hxx index e7b89df5c2..410d4db565 100755 --- a/src/NCollection/NCollection_Vector.hxx +++ b/src/NCollection/NCollection_Vector.hxx @@ -152,8 +152,8 @@ public: public: //! @name public methods //! Constructor - NCollection_Vector (const Standard_Integer theIncrement = 256, - const Handle(NCollection_BaseAllocator)& theAlloc = NULL) : + explicit NCollection_Vector (const Standard_Integer theIncrement = 256, + const Handle(NCollection_BaseAllocator)& theAlloc = NULL) : NCollection_BaseVector (theAlloc, initMemBlocks, sizeof(TheItemType), theIncrement) {}