Skip to content
This repository was archived by the owner on Apr 30, 2025. It is now read-only.

Commit 4cf2186

Browse files
committed
Code format
1 parent 8f96b69 commit 4cf2186

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

httplib.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2982,8 +2982,9 @@ inline constexpr unsigned int str2tag_core(const char *s, size_t l,
29822982
? h
29832983
: str2tag_core(
29842984
s + 1, l - 1,
2985-
//unsets the 6 high bits of h, therefore no overflow happens
2986-
(((std::numeric_limits<unsigned int>::max)() >> 6) & h * 33) ^
2985+
// Unsets the 6 high bits of h, therefore no overflow happens
2986+
(((std::numeric_limits<unsigned int>::max)() >> 6) &
2987+
h * 33) ^
29872988
static_cast<unsigned char>(*s));
29882989
}
29892990

0 commit comments

Comments
 (0)