Fix compiler warning from repeated_field.h
This commit is contained in:
parent
91427fe075
commit
3937dedbff
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue