This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
base: add missing local using statement for namespace std.
legacy
Sam Hocevar
sam
12 years ago
parent
57814351b9
commit
b07216ae20
1 changed files
with
1 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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);
Write
Preview
Loading…
Cancel
Save