Runs scripts/format.sh
This commit is contained in:
committed by
Patrick Niklaus
parent
908fd98824
commit
2a454c4272
@@ -195,11 +195,13 @@ struct RectangleInt2D
|
||||
return lons_contained && lats_contained;
|
||||
}
|
||||
|
||||
friend std::ostream& operator<<(std::ostream& out, const RectangleInt2D& rect);
|
||||
friend std::ostream &operator<<(std::ostream &out, const RectangleInt2D &rect);
|
||||
};
|
||||
inline std::ostream& operator<<(std::ostream& out, const RectangleInt2D& rect)
|
||||
inline std::ostream &operator<<(std::ostream &out, const RectangleInt2D &rect)
|
||||
{
|
||||
out << std::setprecision(12) << "(" << toFloating(rect.min_lon) << "," << toFloating(rect.max_lon) << "," << toFloating(rect.min_lat) << "," << toFloating(rect.max_lat) << ")";
|
||||
out << std::setprecision(12) << "(" << toFloating(rect.min_lon) << ","
|
||||
<< toFloating(rect.max_lon) << "," << toFloating(rect.min_lat) << ","
|
||||
<< toFloating(rect.max_lat) << ")";
|
||||
return out;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user