Przeglądaj źródła

base: allow to resize an array to zero elements.

undefined
Sam Hocevar 11 lat temu
rodzic
commit
abcf219757
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/lol/base/array.h

+ 1
- 1
src/lol/base/array.h Wyświetl plik

@@ -229,7 +229,7 @@ public:

void Resize(int count, Element e = Element())
{
ASSERT(count > 0);
ASSERT(count >= 0);
Reserve(count);

/* Too many elements? Remove them. */


Ładowanie…
Anuluj
Zapisz