Selaa lähdekoodia

pimp: add some clustering in the Amiga export to speed up things.

undefined
Sam Hocevar 11 vuotta sitten
vanhempi
commit
7db4bee1c1
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      src/lol/base/array.h

+ 1
- 1
src/lol/base/array.h Näytä tiedosto

@@ -113,7 +113,7 @@ public:
array_base& operator+=(array_base const &that)
{
int todo = that.m_count;
Reserve(m_count + that.m_count);
Reserve(m_count + todo);
for (int i = 0; i < todo; i++)
new(&m_data[m_count + i]) element_t(that[i]);
m_count += todo;


Ladataan…
Peruuta
Tallenna