summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2017-08-15 22:12:57 +0200
committerPedro J. Estébanez <pedrojrulez@gmail.com>2017-08-15 22:12:57 +0200
commit2a26c5ce6259dda2445c8b46cd7974b70b7865e2 (patch)
treebbb99c349f9730d7f07816cf0b6349856bee8969
parenta4f9c95169579d650d6189d5034fb417bcc518af (diff)
Comment include order to avoid errors
So as to not revive #10071, as suggested by @akien-mga.
-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"