mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 17:16:38 +01:00
remove always-true-condition from if() to avoid compiler warning
This commit is contained in:
parent
b51c4b7ef9
commit
ac18b84351
1 changed files with 2 additions and 1 deletions
|
|
@ -1428,7 +1428,8 @@ Sequence<Time>::dump (ostream& str, typename Sequence<Time>::const_iterator x, u
|
||||||
str << " from " << i->time();
|
str << " from " << i->time();
|
||||||
}
|
}
|
||||||
str << endl;
|
str << endl;
|
||||||
for (; i != end() && (limit >= 0); ++i) {
|
|
||||||
|
for (; i != end(); ++i) {
|
||||||
str << *i << endl;
|
str << *i << endl;
|
||||||
if (limit) {
|
if (limit) {
|
||||||
if (--limit == 0) {
|
if (--limit == 0) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue