diff options
| author | Karroffel | 2017-08-02 02:46:45 +0200 |
|---|---|---|
| committer | Karroffel | 2017-08-02 03:50:33 +0200 |
| commit | 880048377de06c7e34cbfadd68bad2eb3ca17b3d (patch) | |
| tree | 18d43448cb6ac749b64502d345039a85ded8696c /modules/gdnative/gdnative.h | |
| parent | 3a3915b72628dc12e4b79157861ec2ea910c1f31 (diff) | |
| download | godot-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.h | 2 |
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) |
