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:
Chris Beck 2014-07-14 23:42:53 -04:00
parent 09379ca10c
commit baffd44e97

View file

@ -31,7 +31,6 @@ namespace compression {
case BZIP2:
return ".bz2";
case NONE:
default:
return "";
}
}