浏览代码

Fix compiler warning from repeated_field.h

John Burke 9 年之前
父节点
当前提交
3937dedbff
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/google/protobuf/repeated_field.h

+ 1 - 1
src/google/protobuf/repeated_field.h

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