[DLScript] removed STL imports
This commit is contained in:
parent
fa7e167a92
commit
71a99d5517
5 changed files with 1 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
#include "path_db.h"
|
||||
|
||||
#include <memory.h> // why is there no <cmemory> btw?
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
#include "math/quat.h"
|
||||
|
||||
#include <memory.h> // why is there no <cmemory> btw?
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
|
@ -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" {
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
#include "math/transform.h"
|
||||
|
||||
#include <memory.h> // why is there no <cmemory> btw?
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue