Parcourir la source

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

undefined
Sam Hocevar il y a 10 ans
Parent
révision
7db4bee1c1
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/lol/base/array.h

+ 1
- 1
src/lol/base/array.h Voir le fichier

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


Chargement…
Annuler
Enregistrer