浏览代码

add cast to avoid compiler warning

kenton@google.com 15 年之前
父节点
当前提交
15b675eea5
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/google/protobuf/compiler/parser.cc

+ 2 - 1
src/google/protobuf/compiler/parser.cc

@@ -720,7 +720,8 @@ bool Parser::ParseOptionAssignment(Message* options) {
           is_negative ? static_cast<uint64>(kint64max) + 1 : kuint64max;
       DO(ConsumeInteger64(max_value, &value, "Expected integer."));
       if (is_negative) {
-        uninterpreted_option->set_negative_int_value(-value);
+        uninterpreted_option->set_negative_int_value(
+            -static_cast<int64>(value));
       } else {
         uninterpreted_option->set_positive_int_value(value);
       }