Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/Simple-WebSocket-Server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'client_ws.hpp')
-rw-r--r--client_ws.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/client_ws.hpp b/client_ws.hpp
index e4a26f6..98df3b8 100644
--- a/client_ws.hpp
+++ b/client_ws.hpp
@@ -70,7 +70,7 @@ namespace SimpleWeb {
private:
template <typename... Args>
- Connection(std::shared_ptr<ScopeRunner> handler_runner_, long timeout_idle, Args &&... args) noexcept
+ Connection(std::shared_ptr<ScopeRunner> handler_runner_, long timeout_idle, Args &&...args) noexcept
: handler_runner(std::move(handler_runner_)), socket(new socket_type(std::forward<Args>(args)...)), timeout_idle(timeout_idle), closed(false) {}
std::shared_ptr<ScopeRunner> handler_runner;