From 4cf218643e990383f0a037de96df6839aa9d030f Mon Sep 17 00:00:00 2001 From: yhirose Date: Sat, 25 Mar 2023 21:12:40 -0400 Subject: [PATCH] Code format --- httplib.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/httplib.h b/httplib.h index 50c7709..c12a5a2 100644 --- a/httplib.h +++ b/httplib.h @@ -2982,8 +2982,9 @@ inline constexpr unsigned int str2tag_core(const char *s, size_t l, ? h : str2tag_core( s + 1, l - 1, - //unsets the 6 high bits of h, therefore no overflow happens - (((std::numeric_limits::max)() >> 6) & h * 33) ^ + // Unsets the 6 high bits of h, therefore no overflow happens + (((std::numeric_limits::max)() >> 6) & + h * 33) ^ static_cast(*s)); }