aboutsummaryrefslogtreecommitdiff
path: root/modules/gdnative/gdnative.h
diff options
context:
space:
mode:
authorKarroffel2017-08-02 02:46:45 +0200
committerKarroffel2017-08-02 03:50:33 +0200
commit880048377de06c7e34cbfadd68bad2eb3ca17b3d (patch)
tree18d43448cb6ac749b64502d345039a85ded8696c /modules/gdnative/gdnative.h
parent3a3915b72628dc12e4b79157861ec2ea910c1f31 (diff)
downloadgodot-880048377de06c7e34cbfadd68bad2eb3ca17b3d.tar.gz
godot-880048377de06c7e34cbfadd68bad2eb3ca17b3d.tar.zst
godot-880048377de06c7e34cbfadd68bad2eb3ca17b3d.zip
[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/gdnative.h')
-rw-r--r--modules/gdnative/gdnative.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/gdnative.h b/modules/gdnative/gdnative.h
index dd845cab7..f02741f4e 100644
--- a/modules/gdnative/gdnative.h
+++ b/modules/gdnative/gdnative.h
@@ -35,7 +35,7 @@
#include "os/thread_safe.h"
#include "resource.h"
-#include "godot/gdnative.h"
+#include <godot/gdnative.h>
class GDNativeLibrary : public Resource {
GDCLASS(GDNativeLibrary, Resource)