Fix compiler warning from repeated_field.h

This commit is contained in:
John Burke 2016-01-19 15:13:25 -08:00
parent 91427fe075
commit 3937dedbff

View File

@ -692,7 +692,7 @@ class LIBPROTOBUF_EXPORT StringTypeHandlerBase {
class StringTypeHandler : public StringTypeHandlerBase {
public:
static int SpaceUsed(const string& value) {
return sizeof(value) + StringSpaceUsedExcludingSelf(value);
return static_cast<int>(sizeof(value)) + StringSpaceUsedExcludingSelf(value);
}
};