Make everything struct, never use class

This commit is contained in:
Alex Hultman
2019-06-09 08:07:51 +02:00
parent 762b18459e
commit 996703dde6
10 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ namespace uWS {
template <bool SSL, bool isServer>
struct WebSocketContext {
template <bool> friend struct TemplatedApp;
template <bool, class> friend class WebSocketProtocol;
template <bool, typename> friend struct WebSocketProtocol;
private:
WebSocketContext() = delete;