From afda329006aa56f5cd941759474ad10dce83403c 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 d2d68f081b41..8760c145fbfe 100644 --- a/src/core/qgsrange.h +++ b/src/core/qgsrange.h @@ -571,7 +571,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;