style: Set clang-format width 100 (#2953)

This commit is contained in:
Ayaz Salikhov
2026-02-20 15:56:03 +00:00
committed by GitHub
parent 480264ff8f
commit 6ba58f42f0
575 changed files with 14315 additions and 6552 deletions

View File

@@ -34,11 +34,15 @@ struct ConnectionBase;
* @brief Specifies the requirements a Webserver handler must fulfill.
*/
template <typename T>
concept SomeServerHandler =
requires(T handler, std::string req, std::shared_ptr<ConnectionBase> ws, boost::beast::error_code ec) {
// the callback when server receives a request
{ handler(req, ws) };
};
concept SomeServerHandler = requires(
T handler,
std::string req,
std::shared_ptr<ConnectionBase> ws,
boost::beast::error_code ec
) {
// the callback when server receives a request
{ handler(req, ws) };
};
/**
* @brief A tag class for server to help identify Server in templated code.