Bläddra i källkod

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

undefined
Sam Hocevar 10 år sedan
förälder
incheckning
7db4bee1c1
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      src/lol/base/array.h

+ 1
- 1
src/lol/base/array.h Visa fil

@@ -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;


Laddar…
Avbryt
Spara