- GCC complained about this part.

This commit is contained in:
Christoph Oelckers 2017-03-17 10:16:04 +01:00
parent 39b329e3f7
commit 309d086a15

View file

@ -630,7 +630,7 @@ public:
this->Count = other.Count; this->Count = other.Count;
pointed = true; pointed = true;
} }
TStaticPointableArray &operator=(TStaticArray &&other) TStaticPointableArray &operator=(TStaticArray<T> &&other)
{ {
if (!pointed && this->Array) delete[] this->Array; if (!pointed && this->Array) delete[] this->Array;
this->Array = other.Array; this->Array = other.Array;