Remove empty constructors and destructors from core/

This commit is contained in:
kobewi 2025-11-14 23:24:54 +01:00
parent 68410acc61
commit e14263f917
67 changed files with 1 additions and 168 deletions

View file

@ -39,8 +39,6 @@ private:
struct Input {
Variant::Type type = Variant::NIL;
String name;
Input() {}
};
Vector<Input> inputs;
@ -135,7 +133,6 @@ private:
Type type = TYPE_INPUT;
ENode() {}
virtual ~ENode() {
if (next) {
memdelete(next);
@ -267,6 +264,5 @@ public:
bool has_execute_failed() const;
String get_error_text() const;
Expression() {}
~Expression();
};