clean up comments and commented code

git-svn-id: svn://localhost/ardour2/branches/3.0@11110 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-12-29 21:40:20 +00:00
parent 07750ccb32
commit cabb76cce6

View file

@ -1626,14 +1626,22 @@ TempoMap::get_points (framepos_t lower, framepos_t upper) const
} else if (dynamic_cast<MeterSection*> (*next_metric)) { } else if (dynamic_cast<MeterSection*> (*next_metric)) {
/* we hit a new meter section. bump the /* we hit a new meter
* bar and return to beat 1 * section. nothing to do - the
* right thing will happen as
* we move to the next metric
* section down below.
*/ */
} else {
// bar++; /* we hit a tempo mark that is
// beat = 1; * precisely on beat. nothing
// bar_adjusted = true; * to do here - the
* right thing will happen as
* we move to the next metric
* section down below.
*/
} }
} else { } else {
@ -1641,13 +1649,8 @@ TempoMap::get_points (framepos_t lower, framepos_t upper) const
/* we hit either: /* we hit either:
- the end of the requested range - the end of the requested range
- a tempo mark that is precisely on beat
in the first case, we'll exit from we'll exit from the outer loop soon.
the outer loop soon.
in the second case, nothing special
is required.
*/ */
} }