mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 00:56:33 +01:00
Fix range "arithmetic"
Subtracting anything from an empty range should return an empty range, not an assert() failure
This commit is contained in:
parent
9ca0ce4b7f
commit
e4f61de52f
1 changed files with 2 additions and 1 deletions
|
|
@ -137,6 +137,7 @@ struct /*LIBEVORAL_API*/ Range {
|
||||||
Range (T f, T t) : from (f), to (t) {}
|
Range (T f, T t) : from (f), to (t) {}
|
||||||
T from; ///< start of the range
|
T from; ///< start of the range
|
||||||
T to; ///< end of the range (inclusive: to lies inside the range)
|
T to; ///< end of the range (inclusive: to lies inside the range)
|
||||||
|
bool empty() const { return from == to; }
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
|
|
@ -215,7 +216,7 @@ RangeList<T> subtract (Range<T> range, RangeList<T> sub)
|
||||||
RangeList<T> result;
|
RangeList<T> result;
|
||||||
result.add (range);
|
result.add (range);
|
||||||
|
|
||||||
if (sub.empty ()) {
|
if (sub.empty () || range.empty()) {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue