diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2017-08-15 22:12:57 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2017-08-15 22:12:57 +0200 |
commit | 2a26c5ce6259dda2445c8b46cd7974b70b7865e2 (patch) | |
tree | bbb99c349f9730d7f07816cf0b6349856bee8969 | |
parent | a4f9c95169579d650d6189d5034fb417bcc518af (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.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" |