summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-10-12 14:18:26 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-10-18 09:21:55 +0200
commitfc9c1793ad6fae131738e1232dfb29ea0c1a7ccd (patch)
tree2e02f0bd48d07881f2187e709bd3b554e999dca4 /vespalib
parentdff3c1ca91f96f907af23cb0dcd919b8b2830a43 (diff)
Introduce async write interface in the TLS.
Wire it in all the way up and in to proton. The implementation is still synchronous.
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/util/sync.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/util/sync.h b/vespalib/src/vespa/vespalib/util/sync.h
index f961c280174..86e0a227c72 100644
--- a/vespalib/src/vespa/vespalib/util/sync.h
+++ b/vespalib/src/vespa/vespalib/util/sync.h
@@ -710,7 +710,7 @@ public:
/**
* Empty. Needs to be virtual to reduce compiler warnings.
**/
- virtual ~CountDownLatch() {}
+ virtual ~CountDownLatch() = default;
};