From a2b1a6068953f9047b4ff1cf922d657d0b9b0af0 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Mon, 21 Jan 2013 21:12:10 +0000 Subject: [PATCH] core: fix PS3 compilation. --- src/lol/base/string.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lol/base/string.h b/src/lol/base/string.h index 643f4865..d879047f 100644 --- a/src/lol/base/string.h +++ b/src/lol/base/string.h @@ -39,7 +39,7 @@ public: inline String(char const *str) : Super() { - using std::memcpy; + using namespace std; Resize((int)strlen(str)); memcpy(&(*this)[0], str, Count() + 1); } @@ -47,7 +47,7 @@ public: inline String(char const *str, int count) : Super() { - using std::memcpy; + using namespace std; Resize(count + 1); memcpy(&(*this)[0], str, Count()); ((Super &)*this).Last() = '\0';