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

@ -46,7 +46,6 @@ struct DebuggerMarshalls {
struct ScriptStackDump {
List<ScriptLanguage::StackInfo> frames;
ScriptStackDump() {}
Array serialize();
bool deserialize(const Array &p_arr);

View File

@ -55,6 +55,5 @@ public:
GDVIRTUAL1(_add_frame, Array);
GDVIRTUAL4(_tick, double, double, double, double);
EngineProfiler() {}
virtual ~EngineProfiler();
};

View File

@ -82,5 +82,4 @@ public:
void send_error(const String &p_func, const String &p_file, int p_line, const String &p_err, const String &p_descr, bool p_editor_notify, ErrorHandlerType p_type, const Vector<StackInfo> &p_stack_info);
Vector<StackInfo> get_error_stack_info() const;
ScriptDebugger() {}
};