mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Wimplicit-fallthrough fixes for tools/utils
This commit is contained in:
parent
4f86da8544
commit
5c08a6a85d
2 changed files with 4 additions and 2 deletions
|
|
@ -254,7 +254,8 @@ int main (int argc, char* argv[])
|
||||||
settings._sample_format = ExportFormatBase::SF_Float;
|
settings._sample_format = ExportFormatBase::SF_Float;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// no break
|
|
||||||
|
/* fall through */
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "Invalid Bit Depth\n");
|
fprintf(stderr, "Invalid Bit Depth\n");
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
|
|
@ -154,7 +154,8 @@ class LuaTableRef {
|
||||||
}
|
}
|
||||||
// invalid userdata -- fall through
|
// invalid userdata -- fall through
|
||||||
}
|
}
|
||||||
// no break
|
|
||||||
|
/* fall through */
|
||||||
case LUA_TFUNCTION: // no support -- we could... string.format("%q", string.dump(value, true))
|
case LUA_TFUNCTION: // no support -- we could... string.format("%q", string.dump(value, true))
|
||||||
case LUA_TTABLE: // no nested tables, sorry.
|
case LUA_TTABLE: // no nested tables, sorry.
|
||||||
case LUA_TNIL: // fallthrough
|
case LUA_TNIL: // fallthrough
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue