diff --git a/core/math/expression.h b/core/math/expression.h index 59a1030896b..c231040558a 100644 --- a/core/math/expression.h +++ b/core/math/expression.h @@ -36,17 +36,8 @@ class Expression : public RefCounted { GDCLASS(Expression, RefCounted); private: - struct Input { - Variant::Type type = Variant::NIL; - String name; - }; - - Vector inputs; - Variant::Type output_type = Variant::NIL; - String expression; - bool sequenced = false; int str_ofs = 0; bool expression_dirty = false;