aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/io/coded_stream.h
diff options
context:
space:
mode:
authorGravatar topillar <topillar@gmail.com>2016-03-22 23:45:41 +0800
committerGravatar topillar <topillar@gmail.com>2016-03-22 23:45:41 +0800
commit64dfb5f80a4c09ebf09d7f5c2bf0655c840e690b (patch)
treeddfb1f1e92e051f3fa1f765c56d45f1a3b4657c5 /src/google/protobuf/io/coded_stream.h
parent698fa8ee22a96ba35bcf1487bd372616cf67b565 (diff)
Update coded_stream.h
fix warning treated as error prevents building on 64-bit windows.
Diffstat (limited to 'src/google/protobuf/io/coded_stream.h')
-rw-r--r--src/google/protobuf/io/coded_stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/io/coded_stream.h b/src/google/protobuf/io/coded_stream.h
index e3771003..c81a33ac 100644
--- a/src/google/protobuf/io/coded_stream.h
+++ b/src/google/protobuf/io/coded_stream.h
@@ -1136,7 +1136,7 @@ inline void CodedOutputStream::WriteVarint32(uint32 value) {
// this write won't cross the end, so we can skip the checks.
uint8* target = buffer_;
uint8* end = WriteVarint32ToArray(value, target);
- int size = end - target;
+ int size = static_cast<int>(end - target);
Advance(size);
} else {
WriteVarint32SlowPath(value);