From db9c11fcd94ef910ab89bf7ce09442e3d3f4fdca Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Mon, 10 Feb 2025 13:33:45 +1000 Subject: [PATCH] Update src/core/qgsrange.h --- src/core/qgsrange.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/qgsrange.h b/src/core/qgsrange.h index a25f7edec624..2d69b1927d35 100644 --- a/src/core/qgsrange.h +++ b/src/core/qgsrange.h @@ -565,7 +565,7 @@ class QgsTemporalRange */ bool overlaps( const QgsTemporalRange &other ) const { - // one of both range is infinite + // one or both range is infinite if ( isInfinite() || other.isInfinite() ) return true;