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
5050 // Whether the handler-based custom allocation storage has been used
5151 bool _in_use;
5252 // Storage space used for handler-based custom memory allocation
53- typename std::aligned_storage< 1024 >::type _storage;
53+ std::byte _storage[ 1024 ] ;
5454};
5555
5656// ! Asio handler allocator
Original file line number Diff line number Diff line change 1010template <> struct fmt ::formatter<CppServer::HTTP::HTTPRequest> : ostream_formatter {};
1111#endif
1212
13+ // ! \cond DOXYGEN_SKIP
1314template <>
1415struct std ::hash<CppServer::HTTP::HTTPRequest>
1516{
@@ -23,3 +24,4 @@ struct std::hash<CppServer::HTTP::HTTPRequest>
2324 return result;
2425 }
2526};
27+ // ! \endcond
Original file line number Diff line number Diff line change 1010template <> struct fmt ::formatter<CppServer::HTTP::HTTPResponse> : ostream_formatter {};
1111#endif
1212
13+ // ! \cond DOXYGEN_SKIP
1314template <>
1415struct std ::hash<CppServer::HTTP::HTTPResponse>
1516{
@@ -23,3 +24,4 @@ struct std::hash<CppServer::HTTP::HTTPResponse>
2324 return result;
2425 }
2526};
27+ // ! \endcond
You can’t perform that action at this time.
0 commit comments