Browse Source

base: add missing local using statement for namespace std.

legacy
Sam Hocevar sam 12 years ago
parent
commit
b07216ae20
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/lol/base/string.h

+ 1
- 0
src/lol/base/string.h View File

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


Loading…
Cancel
Save