summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2017-08-16 17:11:59 +0200
committerGitHub <noreply@github.com>2017-08-16 17:11:59 +0200
commitc1a43a09bef574eed4d3f5a9d392e4ca7677b3de (patch)
tree7a80558bf2ef0474ebf6aff3b76277337f653d43 /modules
parentf2764dd15da8c71f8ae3ccb20d7b503bc833a543 (diff)
parent2a26c5ce6259dda2445c8b46cd7974b70b7865e2 (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.cpp2
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"