From f2bfc898b2b14bd60a5c65c822c2f064843b108f Mon Sep 17 00:00:00 2001 From: Logan Detrick Date: Sun, 7 Dec 2025 13:23:40 -0800 Subject: [PATCH] Remove unused private variables in expression.h --- core/math/expression.h | 9 --------- 1 file changed, 9 deletions(-) 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;