Skip to content

Commit

Permalink
fix C4245 compiler warning of visual studio
Browse files Browse the repository at this point in the history
allows to use abseil headers in code requiring stricter warnings
  • Loading branch information
christoph-cullmann committed Jun 7, 2019
1 parent 61c9bf3 commit 8717fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion absl/container/internal/raw_hash_set.h
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ struct GroupSse2Impl {
return BitMask<uint32_t, kWidth>(
_mm_movemask_epi8(_mm_sign_epi8(ctrl, ctrl)));
#else
return Match(kEmpty);
return Match(static_cast<h2_t>(kEmpty));
#endif
}

Expand Down

0 comments on commit 8717fd7

Please sign in to comment.