summaryrefslogtreecommitdiff
path: root/modules/gdnative/godot/rect2.cpp
diff options
context:
space:
mode:
authorKarroffel <therzog@mail.de>2017-08-02 02:46:45 +0200
committerKarroffel <therzog@mail.de>2017-08-02 03:50:33 +0200
commit880048377de06c7e34cbfadd68bad2eb3ca17b3d (patch)
tree18d43448cb6ac749b64502d345039a85ded8696c /modules/gdnative/godot/rect2.cpp
parent3a3915b72628dc12e4b79157861ec2ea910c1f31 (diff)
[GDNative] better header include paths
The old include paths caused some problems on some compilers, for example including "string.h" was ambiguous.
Diffstat (limited to 'modules/gdnative/godot/rect2.cpp')
-rw-r--r--modules/gdnative/godot/rect2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/godot/rect2.cpp b/modules/gdnative/godot/rect2.cpp
index 830d7bb496..023584c4f6 100644
--- a/modules/gdnative/godot/rect2.cpp
+++ b/modules/gdnative/godot/rect2.cpp
@@ -27,10 +27,10 @@
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
-#include "rect2.h"
-#include "core/variant.h"
+#include <godot/rect2.h>
#include "core/math/math_2d.h"
+#include "core/variant.h"
#ifdef __cplusplus
extern "C" {