summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/persistence/filestorage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-03-09 01:13:24 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-03-09 01:13:24 +0100
commit7f3e8265707321bf3156e2fe4d4f6e56d17ed557 (patch)
tree13044fe8889a8825440beb7781ebda4fb554b47c /storage/src/tests/persistence/filestorage
parent2a9f79e9b95bd0863a59172ee61ec274d5b9f817 (diff)
deiniline destructors
Diffstat (limited to 'storage/src/tests/persistence/filestorage')
-rw-r--r--storage/src/tests/persistence/filestorage/filestormanagertest.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/storage/src/tests/persistence/filestorage/filestormanagertest.cpp b/storage/src/tests/persistence/filestorage/filestormanagertest.cpp
index 6d52dd455b9..bf7528c2242 100644
--- a/storage/src/tests/persistence/filestorage/filestormanagertest.cpp
+++ b/storage/src/tests/persistence/filestorage/filestormanagertest.cpp
@@ -683,8 +683,8 @@ public:
bool _done;
bool _threadDone;
- MessagePusherThread(FileStorHandler& handler, Document::SP doc)
- : _handler(handler), _doc(doc), _done(false), _threadDone(false) {}
+ MessagePusherThread(FileStorHandler& handler, Document::SP doc);
+ ~MessagePusherThread();
void run() {
while (!_done) {
@@ -702,6 +702,11 @@ public:
}
};
+MessagePusherThread::MessagePusherThread(FileStorHandler& handler, Document::SP doc)
+ : _handler(handler), _doc(doc), _done(false), _threadDone(false)
+{}
+MessagePusherThread::~MessagePusherThread() {}
+
class MessageFetchingThread : public document::Runnable {
public:
FileStorHandler& _handler;