aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2022-02-26 20:30:47 +0100
committerTor Egge <Tor.Egge@online.no>2022-02-26 20:30:47 +0100
commit1b52a65dba2e1e5d8ec3b67e58d4037e7d0f0753 (patch)
tree866e9c1ee9b0dc568b84a2c00a0702923d0e6107 /documentapi
parent4b5b0e6471435c76d60339f274067e004010ea2a (diff)
Remove inlining warnings (documentapi).
Diffstat (limited to 'documentapi')
-rw-r--r--documentapi/src/tests/routablefactory/routablefactory.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/documentapi/src/tests/routablefactory/routablefactory.cpp b/documentapi/src/tests/routablefactory/routablefactory.cpp
index a1b0050efd8..be8c8ad0c39 100644
--- a/documentapi/src/tests/routablefactory/routablefactory.cpp
+++ b/documentapi/src/tests/routablefactory/routablefactory.cpp
@@ -59,8 +59,12 @@ protected:
(void)buf;
return true;
}
+public:
+ ~MyMessageFactory() override;
};
+MyMessageFactory::~MyMessageFactory() = default;
+
class MyReplyFactory : public RoutableFactories60::DocumentReplyFactory {
protected:
DocumentReply::UP doDecode(document::ByteBuffer &buf) const override {
@@ -73,8 +77,12 @@ protected:
(void)buf;
return true;
}
+public:
+ ~MyReplyFactory() override;
};
+MyReplyFactory::~MyReplyFactory() = default;
+
///////////////////////////////////////////////////////////////////////////////
//
// Setup