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
|
|
@ -167,9 +167,6 @@ CallableCustomBind::CallableCustomBind(const Callable &p_callable, const Vector<
|
|||
binds = p_binds;
|
||||
}
|
||||
|
||||
CallableCustomBind::~CallableCustomBind() {
|
||||
}
|
||||
|
||||
//////////////////////////////////
|
||||
|
||||
uint32_t CallableCustomUnbind::hash() const {
|
||||
|
|
@ -273,6 +270,3 @@ CallableCustomUnbind::CallableCustomUnbind(const Callable &p_callable, int p_arg
|
|||
callable = p_callable;
|
||||
argcount = p_argcount;
|
||||
}
|
||||
|
||||
CallableCustomUnbind::~CallableCustomUnbind() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,6 @@ public:
|
|||
Vector<Variant> get_binds() { return binds; }
|
||||
|
||||
CallableCustomBind(const Callable &p_callable, const Vector<Variant> &p_binds);
|
||||
virtual ~CallableCustomBind();
|
||||
};
|
||||
|
||||
class CallableCustomUnbind : public CallableCustom {
|
||||
|
|
@ -91,5 +90,4 @@ public:
|
|||
int get_unbinds() { return argcount; }
|
||||
|
||||
CallableCustomUnbind(const Callable &p_callable, int p_argcount);
|
||||
virtual ~CallableCustomUnbind();
|
||||
};
|
||||
|
|
|
|||
|
|
@ -56,7 +56,6 @@ public:
|
|||
virtual bool is_utf8() const = 0;
|
||||
bool is_eof() const;
|
||||
|
||||
Stream() {}
|
||||
virtual ~Stream() {}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue