mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
* converted two especially obnoxious assertions into warnings since they hinder my work and nobody seems to care about those issues anyway
git-svn-id: svn://localhost/ardour2/branches/3.0@4309 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
971b8bf7cf
commit
ddbd296698
2 changed files with 6 additions and 2 deletions
|
|
@ -193,7 +193,9 @@ Sequence::const_iterator& Sequence::const_iterator::operator++()
|
|||
const bool ret = _control_iter->list->rt_safe_earliest_event_unlocked(
|
||||
_control_iter->x, DBL_MAX, x, y, false);
|
||||
|
||||
assert(!ret || x > _control_iter->x);
|
||||
if ( !(!ret || x > _control_iter->x) ) {
|
||||
cerr << "Warning: Assertion failed: !ret || x > _control_iter->x in Sequence.cpp" << endl;
|
||||
}
|
||||
|
||||
if (ret) {
|
||||
_control_iter->x = x;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue