Merge pull request #321 from christoph-cullmann/c4245_fix_warning

fix C4245 compiler warning of visual studio
pull/323/head
Xiaoyi Zhang 6 years ago committed by GitHub
commit 0238ab0a83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      absl/container/internal/raw_hash_set.h

@ -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
}

Loading…
Cancel
Save