示例#1
0
文件: bounds.hpp 项目: gijs/libosmium
 /**
  * Bounds are equal if both locations are equal.
  */
 inline constexpr bool operator==(const Bounds& lhs, const Bounds& rhs) noexcept {
     return lhs.bottom_left() == rhs.bottom_left() && lhs.top_right() == rhs.top_right();
 }