diff options
| author | Rémi Verschelde | 2017-04-06 08:08:54 +0200 |
|---|---|---|
| committer | GitHub | 2017-04-06 08:08:54 +0200 |
| commit | f5f9b220f9f2a4977df7c7888db650b67b12c8a5 (patch) | |
| tree | 23cf1a122b74024362bcee6548f572be6fb52c6a /modules/dlscript/godot/godot_string.cpp | |
| parent | d681e571ac8464e15187f5e3aa9ca2ede2387903 (diff) | |
| parent | 7d914a289c13f2defd48b8edb9c86ab47046bd5f (diff) | |
| download | godot-f5f9b220f9f2a4977df7c7888db650b67b12c8a5.tar.gz godot-f5f9b220f9f2a4977df7c7888db650b67b12c8a5.tar.zst godot-f5f9b220f9f2a4977df7c7888db650b67b12c8a5.zip | |
Merge pull request #8276 from karroffel/dlscript-stl
[DLScript] API fixed and removed STL imports
Diffstat (limited to '')
| -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 1501743e0..43f05500f 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" { |
