diff options
author | Karroffel <therzog@mail.de> | 2017-04-06 00:21:00 +0200 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-04-06 00:22:37 +0200 |
commit | 71a99d5517f5b4061e66c9e085d7b1922ee9577c (patch) | |
tree | 3c100d5352f32cbe1cc1d55fbbcfb5f16250eab9 /modules/dlscript/godot/godot_string.cpp | |
parent | fa7e167a926a042f448b0a644271c8f0e4256aed (diff) | |
download | redot-engine-71a99d5517f5b4061e66c9e085d7b1922ee9577c.tar.gz |
[DLScript] removed STL imports
Diffstat (limited to 'modules/dlscript/godot/godot_string.cpp')
-rw-r--r-- | modules/dlscript/godot/godot_string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dlscript/godot/godot_string.cpp b/modules/dlscript/godot/godot_string.cpp index 1501743e02..43f05500fd 100644 --- a/modules/dlscript/godot/godot_string.cpp +++ b/modules/dlscript/godot/godot_string.cpp @@ -3,7 +3,7 @@ #include "string_db.h" #include "ustring.h" -#include <memory.h> // why is there no <cmemory> btw? +#include <memory.h> #ifdef __cplusplus extern "C" { |