NO-OP: fix some Wimplicit-fallthrough, see prev commit

This commit is contained in:
Robin Gareus 2019-09-18 17:27:56 +02:00
parent e0d5c1426c
commit ca4b6bb7e9
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
4 changed files with 9 additions and 9 deletions

View file

@ -516,7 +516,7 @@ meter_render_ticks (Gtk::Widget& w, MeterType type, vector<ARDOUR::DataType> typ
points.insert (std::pair<float,float>( 3, 1.0));
points.insert (std::pair<float,float>( 4, 0.5));
points.insert (std::pair<float,float>( 5, 0.5));
/* fall through */
/* fallthrough */
case MeterPeak0dB:
points.insert (std::pair<float,float>(-60, 0.5));
points.insert (std::pair<float,float>(-50, 1.0));
@ -752,12 +752,12 @@ meter_render_metrics (Gtk::Widget& w, MeterType type, vector<DataType> types)
points.insert (std::pair<float,string>( 0.0f, "+20"));
break;
case MeterPeak:
/* fall through */
/* fallthrough */
case MeterKrms:
/* fall through */
/* fallthrough */
default:
points.insert (std::pair<float,string>( 3.0f, "+3"));
/* fall through */
/* fallthrough */
case MeterPeak0dB:
points.insert (std::pair<float,string>(-50.0f, "-50"));
points.insert (std::pair<float,string>(-40.0f, "-40"));