From e188047d70e829fb84192d5ee68602720f362a08 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 8 Jan 2017 17:20:27 +0200 Subject: [PATCH] Fixed compilation with GCC/Clang --- src/tarray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tarray.h b/src/tarray.h index 5b9752d0f..5ae24965d 100644 --- a/src/tarray.h +++ b/src/tarray.h @@ -576,7 +576,7 @@ public: TStaticArray &operator=(const TStaticArray &other) { Alloc(other.Size()); - memcpy(Array, other.Array, Count * sizeof(T)); + memcpy(this->Array, other.Array, this->Count * sizeof(T)); return *this; } };