ソースを参照

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);


読み込み中…
キャンセル
保存