Merge pull request #28 from nburles/fix-intervalset-comparisons

Fixes comparisons of IntervalSets
This commit is contained in:
Mike Lischke 2016-08-01 17:45:45 +02:00 committed by GitHub
commit 8bbdbe0371
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ bool IntervalSet::operator == (const IntervalSet &other) const {
if (_intervals.empty() && other._intervals.empty())
return true;
if (_intervals.empty() || other._intervals.empty())
if (_intervals.size() != other._intervals.size())
return false;
return std::equal(_intervals.begin(), _intervals.end(), other._intervals.begin());