style: clang-tidy auto fixes (#1705)

Fixes #1704. Please review and commit clang-tidy fixes.

Co-authored-by: kuznetsss <15742918+kuznetsss@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-10-25 09:05:28 +01:00
committed by GitHub
parent cffda52ba6
commit 2a5d73730f
15 changed files with 14 additions and 47 deletions

View File

@@ -205,7 +205,7 @@ TEST_F(RequestHeaderValueTest, headerValueString)
TEST_F(RequestHeaderValueTest, headerValueNotFound)
{
http::request<http::string_body> httpRequest{http::verb::get, "/some", 11};
http::request<http::string_body> const httpRequest{http::verb::get, "/some", 11};
Request const request{httpRequest};
auto const maybeHeaderValue = request.headerValue(http::field::user_agent);
EXPECT_FALSE(maybeHeaderValue.has_value());