Align LoopData, HttpContextData

This commit is contained in:
Alex Hultman
2019-01-21 08:40:21 -08:00
parent 19aa6ec9af
commit 74a4048195
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ template<bool> struct HttpResponse;
class HttpRequest; class HttpRequest;
template <bool SSL> template <bool SSL>
struct HttpContextData { struct alignas(16) HttpContextData {
template <bool> friend struct HttpContext; template <bool> friend struct HttpContext;
template <bool> friend struct HttpResponse; template <bool> friend struct HttpResponse;
private: private:
+1 -1
View File
@@ -29,7 +29,7 @@ namespace uWS {
struct Loop; struct Loop;
struct LoopData { struct alignas(16) LoopData {
friend struct Loop; friend struct Loop;
private: private:
std::mutex deferMutex; std::mutex deferMutex;