From c6a911f0379b429691aa0dca6615523892bbfb06 Mon Sep 17 00:00:00 2001 From: Henry Conklin Date: Thu, 11 Feb 2021 09:33:55 -0600 Subject: Add support for numeric XML entities to XMLParser * Add support for decimal numeric entities to String::xml_unescape * Add more error checks to String::xml_unescape * Refactor XMLParser to use String::xml_unescape instead of an internal implementation --- core/io/xml_parser.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'core/io/xml_parser.h') diff --git a/core/io/xml_parser.h b/core/io/xml_parser.h index 01af6a90ad..847edf958d 100644 --- a/core/io/xml_parser.h +++ b/core/io/xml_parser.h @@ -68,8 +68,6 @@ private: char *data = nullptr; char *P = nullptr; uint64_t length = 0; - void unescape(String &p_str); - Vector special_characters; String node_name; bool node_empty = false; NodeType node_type = NODE_NONE; -- cgit v1.2.3