aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-10-14 14:30:11 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-10-14 14:30:11 +0000
commitcbaed757c8163d4853ba91d7a91bd17be32ca23e (patch)
tree68cc9f7fb73783e3fb7fcbbbcbd3a6078ba695af /vespalib
parentc127fb84883687fc184c0eafeb2ebb8e9073cc7a (diff)
GC unused include
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/tests/websocket/websocket_test.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/vespalib/src/tests/websocket/websocket_test.cpp b/vespalib/src/tests/websocket/websocket_test.cpp
index 3983dbb0392..db031b247b4 100644
--- a/vespalib/src/tests/websocket/websocket_test.cpp
+++ b/vespalib/src/tests/websocket/websocket_test.cpp
@@ -5,9 +5,7 @@
#include <vespa/vespalib/websocket/acceptor.h>
#include <vespa/vespalib/websocket/key.h>
#include <vespa/vespalib/websocket/buffer.h>
-#include <vespa/vespalib/util/sync.h>
#include <thread>
-#include <functional>
#include <chrono>
using namespace vespalib;
@@ -25,7 +23,7 @@ struct Receptor : vespalib::ws::Handler<T> {
};
template <typename T>
-Receptor<T>::~Receptor() { }
+Receptor<T>::~Receptor() = default;
vespalib::string read_bytes(Socket &socket, size_t wanted_bytes) {
char tmp[64];