From 309d086a15dc034e9546d11f125bdc421d2d5dbe Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 17 Mar 2017 10:16:04 +0100 Subject: [PATCH] - GCC complained about this part. --- src/tarray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tarray.h b/src/tarray.h index 38e655563..636d7a1d1 100644 --- a/src/tarray.h +++ b/src/tarray.h @@ -630,7 +630,7 @@ public: this->Count = other.Count; pointed = true; } - TStaticPointableArray &operator=(TStaticArray &&other) + TStaticPointableArray &operator=(TStaticArray &&other) { if (!pointed && this->Array) delete[] this->Array; this->Array = other.Array;