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 | |
parent | fa7e167a926a042f448b0a644271c8f0e4256aed (diff) |
[DLScript] removed STL imports
-rw-r--r-- | modules/dlscript/godot.cpp | 4 | ||||
-rw-r--r-- | modules/dlscript/godot/godot_node_path.cpp | 2 | ||||
-rw-r--r-- | modules/dlscript/godot/godot_quat.cpp | 2 | ||||
-rw-r--r-- | modules/dlscript/godot/godot_string.cpp | 2 | ||||
-rw-r--r-- | modules/dlscript/godot/godot_transform.cpp | 2 |
5 files changed, 1 insertions, 11 deletions
diff --git a/modules/dlscript/godot.cpp b/modules/dlscript/godot.cpp index 0e09a82de6..9a488ad612 100644 --- a/modules/dlscript/godot.cpp +++ b/modules/dlscript/godot.cpp @@ -28,15 +28,11 @@ /*************************************************************************/ #include "godot.h" -#include <cstdlib> - #include "class_db.h" #include "dl_script.h" #include "global_config.h" #include "variant.h" -#include <memory.h> - #ifdef __cplusplus extern "C" { #endif diff --git a/modules/dlscript/godot/godot_node_path.cpp b/modules/dlscript/godot/godot_node_path.cpp index cc0652c75b..6f1aa6d602 100644 --- a/modules/dlscript/godot/godot_node_path.cpp +++ b/modules/dlscript/godot/godot_node_path.cpp @@ -2,8 +2,6 @@ #include "path_db.h" -#include <memory.h> // why is there no <cmemory> btw? - #ifdef __cplusplus extern "C" { #endif diff --git a/modules/dlscript/godot/godot_quat.cpp b/modules/dlscript/godot/godot_quat.cpp index 5571614e07..9bd2eb0639 100644 --- a/modules/dlscript/godot/godot_quat.cpp +++ b/modules/dlscript/godot/godot_quat.cpp @@ -2,8 +2,6 @@ #include "math/quat.h" -#include <memory.h> // why is there no <cmemory> btw? - #ifdef __cplusplus extern "C" { #endif 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" { diff --git a/modules/dlscript/godot/godot_transform.cpp b/modules/dlscript/godot/godot_transform.cpp index 18d218e6c4..c8da519f6b 100644 --- a/modules/dlscript/godot/godot_transform.cpp +++ b/modules/dlscript/godot/godot_transform.cpp @@ -2,8 +2,6 @@ #include "math/transform.h" -#include <memory.h> // why is there no <cmemory> btw? - #ifdef __cplusplus extern "C" { #endif |