Index: src/property.cc |
diff --git a/src/property.cc b/src/property.cc |
index f0ff95c0fe2f3e93761630fce988f511255c8e74..81966d4017fe976935b0e20eff2b0a5705491907 100644 |
--- a/src/property.cc |
+++ b/src/property.cc |
@@ -20,7 +20,7 @@ void LookupResult::Iterate(ObjectVisitor* visitor) { |
} |
-OStream& operator<<(OStream& os, const LookupResult& r) { |
+std::ostream& operator<<(std::ostream& os, const LookupResult& r) { |
if (!r.IsFound()) return os << "Not Found\n"; |
os << "LookupResult:\n"; |
@@ -31,7 +31,7 @@ OStream& operator<<(OStream& os, const LookupResult& r) { |
} |
-OStream& operator<<(OStream& os, const Descriptor& d) { |
+std::ostream& operator<<(std::ostream& os, const Descriptor& d) { |
return os << "Descriptor " << Brief(*d.GetKey()) << " @ " |
<< Brief(*d.GetValue()); |
} |