Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Jan 24, 2025
1 parent c71b4e7 commit 7904c75
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/ada/url_search_params-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ inline void url_search_params::set(const std::string_view key,
}

inline void url_search_params::remove(const std::string_view key) {
std::erase_if(params, [&key](const auto &param) { return param.first == key; });
std::erase_if(params,
[&key](const auto &param) { return param.first == key; });
}

inline void url_search_params::remove(const std::string_view key,
Expand Down

0 comments on commit 7904c75

Please sign in to comment.