summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/sync
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-02 14:42:04 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-05-02 14:42:04 +0200
commit1b2adfe710e4092cd8d5fe0464b905b13d573837 (patch)
tree8ed3117bca7ebc0fc31c37404f2ac5b0cac7de37 /vespalib/src/tests/sync
parent0f646f10b377b90fc37e9911f9fe383d112ff157 (diff)
Fix warnings hidden earlier due to including application headers as system includes
Diffstat (limited to 'vespalib/src/tests/sync')
-rw-r--r--vespalib/src/tests/sync/sync_test.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/vespalib/src/tests/sync/sync_test.cpp b/vespalib/src/tests/sync/sync_test.cpp
index 16c044a9902..54fa65daea6 100644
--- a/vespalib/src/tests/sync/sync_test.cpp
+++ b/vespalib/src/tests/sync/sync_test.cpp
@@ -18,10 +18,12 @@ private:
LockGuard lockMonitor() { return LockGuard(_monitor); }
MonitorGuard obtainMonitor() { return MonitorGuard(_monitor); }
public:
+ ~Test();
void testCountDownLatch();
int Main() override;
};
+Test::~Test() {}
void
Test::testCountDownLatch() {
{