forked from OSchip/llvm-project
llvm-strings: remove default for -Wcovered-switch-default
Fix the -Werror build by removing the unnecessary default case in the covered switch. NFC llvm-svn: 292708
This commit is contained in:
parent
ba04861831
commit
2c3771af4e
|
@ -57,7 +57,6 @@ static void strings(raw_ostream &OS, StringRef FileName, StringRef Contents) {
|
||||||
if (PrintFileName)
|
if (PrintFileName)
|
||||||
OS << FileName << ":";
|
OS << FileName << ":";
|
||||||
switch (Radix) {
|
switch (Radix) {
|
||||||
default:
|
|
||||||
case none:
|
case none:
|
||||||
break;
|
break;
|
||||||
case octal:
|
case octal:
|
||||||
|
|
Loading…
Reference in New Issue