File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class HandlerStorage
50
50
// Whether the handler-based custom allocation storage has been used
51
51
bool _in_use;
52
52
// Storage space used for handler-based custom memory allocation
53
- typename std::aligned_storage< 1024 >::type _storage;
53
+ std::byte _storage[ 1024 ] ;
54
54
};
55
55
56
56
// ! Asio handler allocator
Original file line number Diff line number Diff line change 10
10
template <> struct fmt ::formatter<CppServer::HTTP::HTTPRequest> : ostream_formatter {};
11
11
#endif
12
12
13
+ // ! \cond DOXYGEN_SKIP
13
14
template <>
14
15
struct std ::hash<CppServer::HTTP::HTTPRequest>
15
16
{
@@ -23,3 +24,4 @@ struct std::hash<CppServer::HTTP::HTTPRequest>
23
24
return result;
24
25
}
25
26
};
27
+ // ! \endcond
Original file line number Diff line number Diff line change 10
10
template <> struct fmt ::formatter<CppServer::HTTP::HTTPResponse> : ostream_formatter {};
11
11
#endif
12
12
13
+ // ! \cond DOXYGEN_SKIP
13
14
template <>
14
15
struct std ::hash<CppServer::HTTP::HTTPResponse>
15
16
{
@@ -23,3 +24,4 @@ struct std::hash<CppServer::HTTP::HTTPResponse>
23
24
return result;
24
25
}
25
26
};
27
+ // ! \endcond
You can’t perform that action at this time.
0 commit comments