소스 검색

base: crash with an assert error if trying to access a read-only map

with a nonexistent key.
legacy
Sam Hocevar sam 11 년 전
부모
커밋
7181860ee6
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      src/lol/base/map.h

+ 1
- 0
src/lol/base/map.h 파일 보기

@@ -35,6 +35,7 @@ public:
if (m_array[i].m2 == key)
return m_array[i].m3;
/* XXX: this in an error! */
ASSERT(0, "trying to read a non-existent key in map");
return V();
}



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