NO-OP: style guide issues (always use braces; no spaces around conditional parenthesis)

This commit is contained in:
Paul Davis 2020-05-11 07:23:17 -06:00
parent 6f6d26d0ef
commit da9b366e63

View file

@ -212,13 +212,15 @@ AudioPlaylist::read (Sample *buf, Sample *mixdown_buffer, float *gain_buffer, sa
boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion> (*i);
/* muted regions don't figure into it at all */
if ( ar->muted() )
if (ar->muted()) {
continue;
}
/* check for the case of solo_selection */
bool force_transparent = ( _session.solo_selection_active() && SoloSelectedActive() && !SoloSelectedListIncludes( (const Region*) &(**i) ) );
if ( force_transparent )
if (force_transparent) {
continue;
}
/* Work out which bits of this region need to be read;
first, trim to the range we are reading...