mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-01-31 04:20:34 +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)
|
TStaticArray &operator=(const TStaticArray &other)
|
||||||
{
|
{
|
||||||
Alloc(other.Size());
|
Alloc(other.Size());
|
||||||
memcpy(Array, other.Array, Count * sizeof(T));
|
memcpy(this->Array, other.Array, this->Count * sizeof(T));
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue