> On 14 Dec 2019, at 09:54, lemzwerg--- via Discussions on LilyPond development > <[email protected]> wrote: > > LGTM, thanks! > > https://codereview.appspot.com/553310045/ >
The C++11 range for statement is nice too, if the iterator self is not
addressed. For example, in beam.cc:
for (auto& s: stems) {
Interval positions = Stem::head_positions(s);
…
}
