mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
NO-OP: fix some Wimplicit-fallthrough, see prev commit
This commit is contained in:
parent
e0d5c1426c
commit
ca4b6bb7e9
4 changed files with 9 additions and 9 deletions
|
|
@ -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"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue