summaryrefslogtreecommitdiff
path: root/http/utility.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'http/utility.hpp')
-rw-r--r--http/utility.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/http/utility.hpp b/http/utility.hpp
index 75c84c2fc8..7a85519b90 100644
--- a/http/utility.hpp
+++ b/http/utility.hpp
@@ -123,8 +123,8 @@ constexpr inline uint64_t getParameterTag(std::string_view url)
{
return 0;
}
- std::string_view tag =
- url.substr(urlSegmentIndex, urlIndex + 1 - urlSegmentIndex);
+ std::string_view tag = url.substr(urlSegmentIndex,
+ urlIndex + 1 - urlSegmentIndex);
// Note, this is a really lame way to do std::pow(6, paramIndex)
// std::pow doesn't work in constexpr in clang.