Explorar el Código

core: add missing <cstring> include in our string.h.

legacy
Sam Hocevar sam hace 12 años
padre
commit
75b677cade
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/lol/base/string.h

+ 4
- 0
src/lol/base/string.h Ver fichero

@@ -19,6 +19,8 @@

#include <lol/base/array.h>

#include <cstring>

namespace lol
{

@@ -37,6 +39,7 @@ public:
inline String(char const *str)
: Super()
{
using std::memcpy;
Resize((int)strlen(str));
memcpy(&(*this)[0], str, Count() + 1);
}
@@ -44,6 +47,7 @@ public:
inline String(char const *str, int count)
: Super()
{
using std::memcpy;
Resize(count + 1);
memcpy(&(*this)[0], str, Count());
((Super &)*this).Last() = '\0';


Cargando…
Cancelar
Guardar