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-17 15:52:10 +0200
commitb2de6349a5e71ac46b1bd7f38ff38c96f4b1a189 (patch)
tree25b6e907470902fbf507f4913bead957ec424a8a /vespalib
parent4d335b9bde8f4c4b624471a5eb956af4ae6ba73e (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;
};