aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-03-09 14:59:47 +0100
committerGitHub <noreply@github.com>2017-03-09 14:59:47 +0100
commit9e57bebcf1683230c402a769567d5f78566debdf (patch)
tree0129a73081cfb61af12018c5954c6641e89df8e8 /documentapi
parent853cff57ce2ff6f1760bfe363118d24f3cd5fcb4 (diff)
parent27821c298d6f61b025e400812cdd71871c1e3982 (diff)
Merge pull request #1973 from yahoo/balder/deinline-destructors-2
Balder/deinline destructors 2
Diffstat (limited to 'documentapi')
-rw-r--r--documentapi/src/tests/routablefactory/routablefactory.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/documentapi/src/tests/routablefactory/routablefactory.cpp b/documentapi/src/tests/routablefactory/routablefactory.cpp
index ba886f2f7d2..fff7d84a197 100644
--- a/documentapi/src/tests/routablefactory/routablefactory.cpp
+++ b/documentapi/src/tests/routablefactory/routablefactory.cpp
@@ -100,6 +100,7 @@ public:
public:
TestData();
+ ~TestData();
bool start();
};
@@ -127,9 +128,9 @@ TestData::TestData() :
mbus::RPCNetworkParams().setIdentity(mbus::Identity("dst")).setSlobrokConfig(_slobrok.config())),
_dstSession(),
_dstHandler()
-{
- // empty
-}
+{ }
+
+TestData::~TestData() {}
bool
TestData::start()