diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-08-16 17:11:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-16 17:11:59 +0200 |
commit | c1a43a09bef574eed4d3f5a9d392e4ca7677b3de (patch) | |
tree | 7a80558bf2ef0474ebf6aff3b76277337f653d43 /modules | |
parent | f2764dd15da8c71f8ae3ccb20d7b503bc833a543 (diff) | |
parent | 2a26c5ce6259dda2445c8b46cd7974b70b7865e2 (diff) |
Merge pull request #10356 from RandomShaper/fix-msvc-error
Add comment warning about include order
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdnative/godot/dictionary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/godot/dictionary.cpp b/modules/gdnative/godot/dictionary.cpp index b92c8125bb..c538456432 100644 --- a/modules/gdnative/godot/dictionary.cpp +++ b/modules/gdnative/godot/dictionary.cpp @@ -30,7 +30,7 @@ #include <godot/dictionary.h> #include "core/variant.h" - +// core/variant.h before to avoid compile errors with MSVC #include "core/dictionary.h" #include "core/io/json.h" |