silence a clang warning -Wcovered-switch-default
There's no reason to catch DEFAULT there anyways, most likely if someone adds a new format to the enum, we want them to specify a new extension for it.
This commit is contained in:
parent
09379ca10c
commit
baffd44e97
1 changed files with 0 additions and 1 deletions
|
@ -31,7 +31,6 @@ namespace compression {
|
|||
case BZIP2:
|
||||
return ".bz2";
|
||||
case NONE:
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue