mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 22:00:33 +05:00
Copy ctor for IVec
This commit is contained in:
parent
4fd89120b8
commit
62d2e4fba5
@ -52,7 +52,8 @@ namespace ngcore
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
NETGEN_INLINE IVec () { }
|
constexpr NETGEN_INLINE IVec () = default;
|
||||||
|
constexpr NETGEN_INLINE IVec (const IVec & i1) : i(i1.i) { }
|
||||||
|
|
||||||
constexpr NETGEN_INLINE IVec (T ai1) : i(ai1) { }
|
constexpr NETGEN_INLINE IVec (T ai1) : i(ai1) { }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user