summaryrefslogtreecommitdiffstats
path: root/config/src/tests/functiontest/functiontest.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-03-04 00:19:23 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-03-08 21:38:39 +0000
commitdc28bbbd37e04b254b9a3f5a3f47709fbf22371e (patch)
treece15bb4025cb99cfa4e4ce0e6831859036305b4a /config/src/tests/functiontest/functiontest.cpp
parent032de590a77215ac3625e380dd94fbe5fd8aa19f (diff)
Deinline destructors/constructors
Diffstat (limited to 'config/src/tests/functiontest/functiontest.cpp')
-rw-r--r--config/src/tests/functiontest/functiontest.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/config/src/tests/functiontest/functiontest.cpp b/config/src/tests/functiontest/functiontest.cpp
index 24d50b44ca4..deed6f15f1a 100644
--- a/config/src/tests/functiontest/functiontest.cpp
+++ b/config/src/tests/functiontest/functiontest.cpp
@@ -94,13 +94,16 @@ struct LazyTestFixture
ConfigHandle<FunctionTestConfig>::UP _handle;
std::unique_ptr<FunctionTestConfig> _config;
- LazyTestFixture(const std::string & dirName)
+ LazyTestFixture(const std::string & dirName);
+ ~LazyTestFixture();
+};
+
+LazyTestFixture::LazyTestFixture(const std::string & dirName)
: _spec(TEST_PATH(dirName)),
_subscriber(_spec),
_handle(_subscriber.subscribe<FunctionTestConfig>(""))
- {
- }
-};
+{ }
+LazyTestFixture::~LazyTestFixture() { }
struct TestFixture : public LazyTestFixture
{