Remove uWS namespace specifier

This commit is contained in:
Alex Hultman
2021-02-20 23:50:50 +01:00
parent 6bf2e75589
commit c7805e2e48
7 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -47,8 +47,8 @@ private:
public:
/* The callbacks for this context */
MoveOnlyFunction<void(uWS::WebSocket<SSL, true> *)> openHandler = nullptr;
MoveOnlyFunction<void(WebSocket<SSL, true> *, std::string_view, uWS::OpCode)> messageHandler = nullptr;
MoveOnlyFunction<void(WebSocket<SSL, true> *)> openHandler = nullptr;
MoveOnlyFunction<void(WebSocket<SSL, true> *, std::string_view, OpCode)> messageHandler = nullptr;
MoveOnlyFunction<void(WebSocket<SSL, true> *)> drainHandler = nullptr;
MoveOnlyFunction<void(WebSocket<SSL, true> *, int, std::string_view)> closeHandler = nullptr;
/* Todo: these should take message also; breaking change for v0.18 */