Skip to content

Commit f2bfc89

Browse files
committed
Remove unused private variables in expression.h
1 parent 78d9194 commit f2bfc89

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

core/math/expression.h

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,8 @@ class Expression : public RefCounted {
3636
GDCLASS(Expression, RefCounted);
3737

3838
private:
39-
struct Input {
40-
Variant::Type type = Variant::NIL;
41-
String name;
42-
};
43-
44-
Vector<Input> inputs;
45-
Variant::Type output_type = Variant::NIL;
46-
4739
String expression;
4840

49-
bool sequenced = false;
5041
int str_ofs = 0;
5142
bool expression_dirty = false;
5243

0 commit comments

Comments
 (0)