Fix covered-switch-default warning in FormatManager.

Summary:
The default case doesn't need to be here as the switch covers
all possible values. If there's a new "lazy bool" value added
in the future, the compiler would start to warn about the new
case not being covered.

Reviewers: granata.enrico, clayborg

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D13084

llvm-svn: 248365
This commit is contained in:
Bruce Mitchener 2015-09-23 02:33:30 +00:00
parent 7fa48ab6ce
commit 77b94d4416
1 changed files with 0 additions and 1 deletions

View File

@ -570,7 +570,6 @@ FormatManager::ShouldPrintAsOneLiner (ValueObject& valobj)
case eLazyBoolYes:
return true;
case eLazyBoolCalculate:
default:
break;
}
}