aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/stubs/status.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/google/protobuf/stubs/status.cc')
-rw-r--r--src/google/protobuf/stubs/status.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/stubs/status.cc b/src/google/protobuf/stubs/status.cc
index dd1bd614..2bfbe0b4 100644
--- a/src/google/protobuf/stubs/status.cc
+++ b/src/google/protobuf/stubs/status.cc
@@ -124,7 +124,7 @@ string Status::ToString() const {
}
}
-ostream& operator<<(ostream& os, const Status& x) {
+std::ostream& operator<<(std::ostream& os, const Status& x) {
os << x.ToString();
return os;
}