diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2019-04-21 00:46:07 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-21 00:46:07 +0300 |
commit | bc7178422e98c86c7c8c9d9e572a9c6941836d79 (patch) | |
tree | 01e46eb66d50e1c5d6b06295dba455ac8dc020f3 /core/variant.h | |
parent | 58999720491884429fa76b7d61c503f47657f4c6 (diff) | |
parent | 8b1e297fc6567ead2c400199348d89e17b552899 (diff) |
Merge pull request #28217 from hpvb/fix-28089
Don't crash on printing nested types
Diffstat (limited to 'core/variant.h')
-rw-r--r-- | core/variant.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/variant.h b/core/variant.h index 9215d15bf0..5151262f27 100644 --- a/core/variant.h +++ b/core/variant.h @@ -401,6 +401,7 @@ public: bool hash_compare(const Variant &p_variant) const; bool booleanize() const; + String stringify(List<const void *> &stack) const; void static_assign(const Variant &p_variant); static void get_constructor_list(Variant::Type p_type, List<MethodInfo> *p_list); |