fixed TArray::push_back

This commit is contained in:
Professor Hastig 2024-01-05 11:13:05 +01:00 committed by Christoph Oelckers
parent 8cec6094d2
commit c446af41ae

View file

@ -684,7 +684,7 @@ public:
Resize(i); Resize(i);
} }
void push_back(T& elem) void push_back(const T& elem)
{ {
Push(elem); Push(elem);
} }