Skip to content

Commit

Permalink
Fix Doxygen generation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
chronoxor committed Nov 19, 2023
1 parent 6d30827 commit 9c3456e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/server/asio/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class HandlerStorage
// Whether the handler-based custom allocation storage has been used
bool _in_use;
// Storage space used for handler-based custom memory allocation
typename std::aligned_storage<1024>::type _storage;
std::byte _storage[1024];
};

//! Asio handler allocator
Expand Down
2 changes: 2 additions & 0 deletions include/server/http/http_request.inl
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
template <> struct fmt::formatter<CppServer::HTTP::HTTPRequest> : ostream_formatter {};
#endif

//! \cond DOXYGEN_SKIP
template <>
struct std::hash<CppServer::HTTP::HTTPRequest>
{
Expand All @@ -23,3 +24,4 @@ struct std::hash<CppServer::HTTP::HTTPRequest>
return result;
}
};
//! \endcond
2 changes: 2 additions & 0 deletions include/server/http/http_response.inl
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
template <> struct fmt::formatter<CppServer::HTTP::HTTPResponse> : ostream_formatter {};
#endif

//! \cond DOXYGEN_SKIP
template <>
struct std::hash<CppServer::HTTP::HTTPResponse>
{
Expand All @@ -23,3 +24,4 @@ struct std::hash<CppServer::HTTP::HTTPResponse>
return result;
}
};
//! \endcond

0 comments on commit 9c3456e

Please sign in to comment.