summaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@verizonmedia.com>2020-04-01 11:53:01 +0000
committerTor Brede Vekterli <vekterli@verizonmedia.com>2020-04-01 11:53:01 +0000
commit5a847ff337b93b999746e052d8924690cea1b7b9 (patch)
tree696a1a5bfb7f4909ab66b32bd09a2fc0a0b7e5a2 /document
parentbe3c2e7f0f1f3edc07973dccb05b13bf30c75de1 (diff)
Don't have implicitly inlined test destructor
Diffstat (limited to 'document')
-rw-r--r--document/src/tests/documentselectparsertest.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/document/src/tests/documentselectparsertest.cpp b/document/src/tests/documentselectparsertest.cpp
index 59f4ce69b33..9ac402f56ef 100644
--- a/document/src/tests/documentselectparsertest.cpp
+++ b/document/src/tests/documentselectparsertest.cpp
@@ -34,6 +34,8 @@ protected:
std::vector<Document::SP > _doc;
std::vector<DocumentUpdate::SP > _update;
+ ~DocumentSelectParserTest();
+
Document::SP createDoc(
const std::string& doctype, const std::string& id, uint32_t hint,
double hfloat, const std::string& hstr, const std::string& cstr,
@@ -65,6 +67,7 @@ protected:
void testDocumentUpdates4();
};
+DocumentSelectParserTest::~DocumentSelectParserTest() = default;
namespace {
std::shared_ptr<const DocumentTypeRepo> _repo;