Skip to content

Commit

Permalink
Coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
Tectu committed Nov 25, 2024
1 parent c7b5020 commit 75ca1f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/malloy/core/http/request.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ namespace malloy::http
* @param port The port at which the host serves requests.
* @param target_ The target.
*/
request(http::method method_, std::string_view host, const std::uint16_t port, std::string_view target_)
: m_port(port)
request(http::method method_, std::string_view host, const std::uint16_t port, std::string_view target_) :
m_port(port)
{
msg_t::version(11);
msg_t::method(method_);
Expand All @@ -54,7 +54,7 @@ namespace malloy::http

// Cookies
{
const auto &[begin, end] = msg_t::base().equal_range(field::cookie);
const auto& [begin, end] = msg_t::base().equal_range(field::cookie);
for (auto it = begin; it != end; it++) {
const auto &str = it->value();

Expand Down

0 comments on commit 75ca1f0

Please sign in to comment.