ソースを参照

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


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