浏览代码

core: fix PS3 compilation.

legacy
Sam Hocevar sam 12 年前
父节点
当前提交
a2b1a60689
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/lol/base/string.h

+ 2
- 2
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';


正在加载...
取消
保存