Преглед изворни кода

Fully qualify min as std::min in wire_format_lite.cc

Adam Cozzette пре 8 година
родитељ
комит
07c284f86c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/google/protobuf/wire_format_lite.cc

+ 1 - 1
src/google/protobuf/wire_format_lite.cc

@@ -378,7 +378,7 @@ static void WriteArray(const CType* a, int n, io::CodedOutputStream* output) {
   const int kAtATime = 128;
   uint8 buf[sizeof(CType) * kAtATime];
   for (int i = 0; i < n; i += kAtATime) {
-    int to_do = min(kAtATime, n - i);
+    int to_do = std::min(kAtATime, n - i);
     uint8* ptr = buf;
     for (int j = 0; j < to_do; j++) {
       EncodeFixedSizeValue(a[i+j], ptr);