1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0029961: Foundation Classes - NCollection_Shared constructor passes arguments by copy

New NCollection_Shared constructors taking arguments by reference have been added.
This commit is contained in:
kgv 2018-07-15 11:35:12 +03:00 committed by bugmaster
parent ca0962a1e9
commit 45117bfc1d

View File

@ -43,12 +43,22 @@ public:
NCollection_Shared () {}
//! Constructor with single argument
template <typename T1>
NCollection_Shared (T1 arg1) : T(arg1) {}
template<typename T1> NCollection_Shared (const T1& arg1) : T(arg1) {}
//! Constructor with single argument
template<typename T1> NCollection_Shared (T1& arg1) : T(arg1) {}
//! Constructor with two arguments
template <typename T1, typename T2>
NCollection_Shared (T1 arg1, T2 arg2) : T(arg1, arg2) {}
template<typename T1, typename T2> NCollection_Shared (const T1& arg1, const T2& arg2) : T(arg1, arg2) {}
//! Constructor with two arguments
template<typename T1, typename T2> NCollection_Shared (T1& arg1, const T2& arg2) : T(arg1, arg2) {}
//! Constructor with two arguments
template<typename T1, typename T2> NCollection_Shared (const T1& arg1, T2& arg2) : T(arg1, arg2) {}
//! Constructor with two arguments
template<typename T1, typename T2> NCollection_Shared (T1& arg1, T2& arg2) : T(arg1, arg2) {}
/* this could work...
//! Forwarding constructor