diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-08-04 04:06:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-04 04:06:54 +0200 |
commit | 211dfa6602cff8605acfd29986dcf33f3c3176cc (patch) | |
tree | 322fac9aa42ef3cec75253416ae03ec2ff4d58e5 /modules | |
parent | 26ff90eaed7562dfe79ce9ba1bb732e0f52ae714 (diff) | |
parent | ab3b1e67c7901c279268f58ca9e3e0d7909717c0 (diff) |
Merge pull request #10072 from karroffel/gdnative-header-include-paths
[GDNative] fixed a bug with ambiguous include paths
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdnative/godot/dictionary.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gdnative/godot/dictionary.cpp b/modules/gdnative/godot/dictionary.cpp index ce402fa008..b92c8125bb 100644 --- a/modules/gdnative/godot/dictionary.cpp +++ b/modules/gdnative/godot/dictionary.cpp @@ -29,9 +29,10 @@ /*************************************************************************/ #include <godot/dictionary.h> +#include "core/variant.h" + #include "core/dictionary.h" #include "core/io/json.h" -#include "core/variant.h" #ifdef __cplusplus extern "C" { |