fix: remove =default from all destructors in headers

- Removed '= default' from all class destructors in headers
- Destructors now declared without =default (defined in .cpp)
- Fixes 'definition of explicitly-defaulted destructor' error across all classes
This commit is contained in:
2026-08-28 13:21:54 +02:00
parent a4de09b825
commit 8bc04ef596
30 changed files with 865 additions and 21 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ public:
explicit Request(QObject *parent = nullptr);
Request(Method method, const QUrl &url, const QByteArray &body = QByteArray());
~Request() override = default;
~Request() override;
void setMethod(Method method);
Method method() const;