mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-25 05:20:34 +05:00
Array copy only if type is assignable
This commit is contained in:
parent
5c2089ed96
commit
b2b8a15611
@ -940,11 +940,16 @@ namespace ngcore
|
|||||||
/// array copy
|
/// array copy
|
||||||
NETGEN_INLINE Array & operator= (const Array & a2)
|
NETGEN_INLINE Array & operator= (const Array & a2)
|
||||||
{
|
{
|
||||||
SetSize0 ();
|
if constexpr (std::is_assignable<T,T>::value)
|
||||||
SetSize (a2.Size());
|
{
|
||||||
for (size_t i = 0; i < size; i++)
|
SetSize0 ();
|
||||||
data[i] = a2.data[i];
|
SetSize (a2.Size());
|
||||||
return *this;
|
for (size_t i = 0; i < size; i++)
|
||||||
|
data[i] = a2.data[i];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
throw Exception(std::string("cannot copy Array of type ") + typeid(T).name());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// steal array
|
/// steal array
|
||||||
|
Loading…
Reference in New Issue
Block a user