mirror of https://github.com/godotengine/godot
Merge pull request #114072 from Fahien/include-cstdlib
Add missing `cstdlib` include for `EXIT_SUCCESS` and `free`
This commit is contained in:
commit
d08fbbcc0d
|
|
@ -34,6 +34,7 @@
|
|||
#include "core/math/math_funcs.h"
|
||||
|
||||
#include <zlib.h> // Should come before including tinyexr.
|
||||
#include <cstdlib>
|
||||
|
||||
#include "thirdparty/tinyexr/tinyexr.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -36,6 +36,8 @@
|
|||
#include "core/templates/self_list.h"
|
||||
#include "scene/main/scene_tree_fti.h"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
#undef Window
|
||||
|
||||
class ArrayMesh;
|
||||
|
|
|
|||
Loading…
Reference in New Issue