misc stuff

This commit is contained in:
eelke 2021-03-06 13:15:17 +01:00
parent 423043d431
commit 7fbc828326
3 changed files with 2 additions and 9 deletions

View file

@ -29,7 +29,7 @@ public:
bool overlap(Range<T> r) const
{
if ( (r.m_start < m_end || (m_incl))
if ( (r.m_start < m_end || (m_inclStart))
&& r.m_end > m_start)
return true;