Skip to content

Commit

Permalink
TEMPORARY: break something for clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
reneme committed Jul 25, 2023
1 parent 48148cf commit d5d8f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/tls_http_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ class TLS_Asio_HTTP_Session final : public std::enable_shared_from_this<TLS_Asio

if(request.headers().empty() == false) {
strm << "Client HTTP headers:\n";
for(const auto& kv : request.headers()) {
for(const auto kv : request.headers()) {
strm << " " << kv.first << ": " << kv.second << "\n";
}
}
Expand Down

0 comments on commit d5d8f9f

Please sign in to comment.