Commit 8717fd7f by Christoph Cullmann

fix C4245 compiler warning of visual studio

allows to use abseil headers in code requiring stricter warnings
parent 61c9bf3e
...@@ -350,7 +350,7 @@ struct GroupSse2Impl { ...@@ -350,7 +350,7 @@ struct GroupSse2Impl {
return BitMask<uint32_t, kWidth>( return BitMask<uint32_t, kWidth>(
_mm_movemask_epi8(_mm_sign_epi8(ctrl, ctrl))); _mm_movemask_epi8(_mm_sign_epi8(ctrl, ctrl)));
#else #else
return Match(kEmpty); return Match(static_cast<h2_t>(kEmpty));
#endif #endif
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment