mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
util/string.h: suppress case fallthrough warnings
This commit is contained in:
parent
35b1440c97
commit
bd045c65a2
@ -443,8 +443,11 @@ namespace Genode {
|
||||
if (i > 0)
|
||||
switch (s[i]) {
|
||||
case 'G': res *= 1024;
|
||||
[[fallthrough]];
|
||||
case 'M': res *= 1024;
|
||||
[[fallthrough]];
|
||||
case 'K': res *= 1024; i++;
|
||||
[[fallthrough]];
|
||||
default: break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user