| Index: third_party/protobuf/src/google/protobuf/compiler/subprocess.cc
|
| diff --git a/third_party/protobuf/src/google/protobuf/compiler/subprocess.cc b/third_party/protobuf/src/google/protobuf/compiler/subprocess.cc
|
| index a30ac305199ebbee5ef91bb160c30751713d759b..6e2586641255d983e5d4b0a7a90d4a1760fbb7a0 100644
|
| --- a/third_party/protobuf/src/google/protobuf/compiler/subprocess.cc
|
| +++ b/third_party/protobuf/src/google/protobuf/compiler/subprocess.cc
|
| @@ -361,7 +361,7 @@ bool Subprocess::Communicate(const Message& input, Message* output,
|
| string output_data;
|
|
|
| int input_pos = 0;
|
| - int max_fd = max(child_stdin_, child_stdout_);
|
| + int max_fd = std::max(child_stdin_, child_stdout_);
|
|
|
| while (child_stdout_ != -1) {
|
| fd_set read_fds;
|
|
|