瀏覽代碼

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;


Loading…
取消
儲存