1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Merge pull request #113730 from lodetrick/unused-core

Codestyle: Remove unused private variables in `expression.h`
This commit is contained in:
Thaddeus Crews
2025-12-08 11:53:55 -06:00

View File

@@ -36,17 +36,8 @@ class Expression : public RefCounted {
GDCLASS(Expression, RefCounted);
private:
struct Input {
Variant::Type type = Variant::NIL;
String name;
};
Vector<Input> inputs;
Variant::Type output_type = Variant::NIL;
String expression;
bool sequenced = false;
int str_ofs = 0;
bool expression_dirty = false;