소스 검색

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

undefined
Sam Hocevar 11 년 전
부모
커밋
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;


불러오는 중...
취소
저장