소스 검색

base: add missing local using statement for namespace std.

legacy
Sam Hocevar sam 12 년 전
부모
커밋
b07216ae20
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      src/lol/base/string.h

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

@@ -118,6 +118,7 @@ public:

inline String& operator +=(String const &s)
{
using namespace std;
int old_count = Count();
Resize(Count() + s.Count());
memcpy(&(*this)[old_count], &s[0], Count() - old_count);


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