Skip to content

Commit 9c3456e

Browse files
committed
Fix Doxygen generation errors
1 parent 6d30827 commit 9c3456e

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

include/server/asio/memory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

include/server/http/http_request.inl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
template <> struct fmt::formatter<CppServer::HTTP::HTTPRequest> : ostream_formatter {};
1111
#endif
1212

13+
//! \cond DOXYGEN_SKIP
1314
template <>
1415
struct std::hash<CppServer::HTTP::HTTPRequest>
1516
{
@@ -23,3 +24,4 @@ struct std::hash<CppServer::HTTP::HTTPRequest>
2324
return result;
2425
}
2526
};
27+
//! \endcond

include/server/http/http_response.inl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
template <> struct fmt::formatter<CppServer::HTTP::HTTPResponse> : ostream_formatter {};
1111
#endif
1212

13+
//! \cond DOXYGEN_SKIP
1314
template <>
1415
struct std::hash<CppServer::HTTP::HTTPResponse>
1516
{
@@ -23,3 +24,4 @@ struct std::hash<CppServer::HTTP::HTTPResponse>
2324
return result;
2425
}
2526
};
27+
//! \endcond

0 commit comments

Comments
 (0)