summaryrefslogtreecommitdiffstats
path: root/core/io/xml_parser.h
diff options
context:
space:
mode:
authorHein-Pieter van Braam <hp@tmm.cx>2017-08-31 23:30:35 +0200
committerHein-Pieter van Braam <hp@tmm.cx>2017-09-01 08:13:12 +0200
commitf9467ec1ea6c0dac2ea513b7dfe58d0349788e02 (patch)
tree05421200fdd55c97b3b60895597f487d8ac51afa /core/io/xml_parser.h
parent51ae90d7893fd392dd8938cc41c52081e5065794 (diff)
downloadredot-engine-f9467ec1ea6c0dac2ea513b7dfe58d0349788e02.tar.gz
Fix signed and unsigned comparisons
The first in my quest to make Godot 3.x compile with -Werror on GCC7
Diffstat (limited to 'core/io/xml_parser.h')
-rw-r--r--core/io/xml_parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/xml_parser.h b/core/io/xml_parser.h
index 28c57b567f..26616ed94a 100644
--- a/core/io/xml_parser.h
+++ b/core/io/xml_parser.h
@@ -67,7 +67,7 @@ public:
private:
char *data;
char *P;
- int length;
+ uint64_t length;
void unescape(String &p_str);
Vector<String> special_characters;
String node_name;