浏览代码

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;


正在加载...
取消
保存