From 4eec328dbf7ff69776cd989596efa9f45dff68e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Mon, 3 Mar 2025 21:43:39 +0100 Subject: [PATCH] Cosmetics --- src/common/rectc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/rectc.h b/src/common/rectc.h index 5b608c1e..79a05db8 100644 --- a/src/common/rectc.h +++ b/src/common/rectc.h @@ -53,7 +53,7 @@ public: bool intersects(const RectC &r) const {return (right() >= r.left() && bottom() <= r.top() && left() <= r.right() && top() >= r.bottom());} - bool contains(const Coordinates&c) const + bool contains(const Coordinates &c) const {return (c.lon() >= left() && c.lon() <= right() && c.lat() <= top() && c.lat() >= bottom());}