mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Fixed compilation with GCC/Clang
This commit is contained in:
parent
a54d2d8a55
commit
e188047d70
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue