aboutsummaryrefslogtreecommitdiff
path: root/core/io/xml_parser.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2014-12-15 15:42:58 -0300
committerJuan Linietsky2014-12-15 15:42:58 -0300
commit089d7fa171e3a3305991047e82b4043d4f05783f (patch)
treea41af5ab93f6d745962e471da8dc6003e6b8e430 /core/io/xml_parser.cpp
parentbe4e40e90a5a322f6a7cec4893854ef5b15db600 (diff)
downloadgodot-089d7fa171e3a3305991047e82b4043d4f05783f.tar.gz
godot-089d7fa171e3a3305991047e82b4043d4f05783f.tar.zst
godot-089d7fa171e3a3305991047e82b4043d4f05783f.zip
Diffstat (limited to 'core/io/xml_parser.cpp')
-rw-r--r--core/io/xml_parser.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/io/xml_parser.cpp b/core/io/xml_parser.cpp
index 5d3e4f61a..6306d2236 100644
--- a/core/io/xml_parser.cpp
+++ b/core/io/xml_parser.cpp
@@ -30,6 +30,8 @@
#include "print_string.h"
//#define DEBUG_XML
+VARIANT_ENUM_CAST(XMLParser::NodeType);
+
static bool _equalsn(const CharType* str1, const CharType* str2, int len) {
int i;
for(i=0; str1[i] && str2[i] && i < len; ++i)