Skip to content

Commit da18856

Browse files
committed
ais:.h Fix google-global-names-in-headers for std::ostream
1 parent 09a9ff2 commit da18856

8 files changed

Lines changed: 67 additions & 68 deletions

File tree

src/libais/ais.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ AisPoint::AisPoint(double lng_deg_, double lat_deg_)
110110
: lng_deg(lng_deg_), lat_deg(lat_deg_) {
111111
}
112112

113-
ostream& operator<< (ostream &o, const AisPoint &position) {
113+
std::ostream& operator<< (std::ostream &o, const AisPoint &position) {
114114
return o << " (" << position.lng_deg << ", " << position.lat_deg << ")";
115115
}
116116

0 commit comments

Comments
 (0)