ソースを参照

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

undefined
Sam Hocevar 10年前
コミット
7db4bee1c1
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/lol/base/array.h

+ 1
- 1
src/lol/base/array.h ファイルの表示

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


読み込み中…
キャンセル
保存