add static cast to silence signedness comparison warning

This commit is contained in:
Jan Tattermusch 2015-08-26 13:10:05 -07:00
parent 66b074f491
commit 276ce8c15b

View File

@ -1223,7 +1223,7 @@ void RepeatedField<Element>::Reserve(int new_size) {
Arena* arena = GetArenaNoVirtual();
new_size = max(google::protobuf::internal::kMinRepeatedFieldAllocationSize,
max(total_size_ * 2, new_size));
GOOGLE_CHECK_LE(new_size,
GOOGLE_CHECK_LE(static_cast<size_t>(new_size),
(std::numeric_limits<size_t>::max() - kRepHeaderSize) /
sizeof(Element))
<< "Requested size is too large to fit into size_t.";