Fix compiler warning from repeated_field.h
This commit is contained in:
parent
91427fe075
commit
3937dedbff
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user