mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Remove empty constructors and destructors from core/
This commit is contained in:
parent
68410acc61
commit
e14263f917
67 changed files with 1 additions and 168 deletions
|
|
@ -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();
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue