summaryrefslogtreecommitdiff
path: root/core/variant_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/variant_parser.h')
-rw-r--r--core/variant_parser.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/variant_parser.h b/core/variant_parser.h
index af7d55d1b8..b55d7b2df0 100644
--- a/core/variant_parser.h
+++ b/core/variant_parser.h
@@ -38,7 +38,6 @@
class VariantParser {
public:
struct Stream {
-
virtual CharType get_char() = 0;
virtual bool is_utf8() const = 0;
virtual bool is_eof() const = 0;
@@ -50,7 +49,6 @@ public:
};
struct StreamFile : public Stream {
-
FileAccess *f = nullptr;
virtual CharType get_char();
@@ -61,7 +59,6 @@ public:
};
struct StreamString : public Stream {
-
String s;
int pos = 0;
@@ -75,7 +72,6 @@ public:
typedef Error (*ParseResourceFunc)(void *p_self, Stream *p_stream, Ref<Resource> &r_res, int &line, String &r_err_str);
struct ResourceParser {
-
void *userdata = nullptr;
ParseResourceFunc func;
ParseResourceFunc ext_func;
@@ -112,13 +108,11 @@ public:
};
struct Token {
-
TokenType type;
Variant value;
};
struct Tag {
-
String name;
Map<String, Variant> fields;
};