mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 20:21:26 +00:00
fixed TArray::push_back
This commit is contained in:
parent
8cec6094d2
commit
c446af41ae
1 changed files with 1 additions and 1 deletions
|
@ -684,7 +684,7 @@ public:
|
||||||
Resize(i);
|
Resize(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
void push_back(T& elem)
|
void push_back(const T& elem)
|
||||||
{
|
{
|
||||||
Push(elem);
|
Push(elem);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue