Fix else style. No functionality change intended.
llvm-svn: 137896
This commit is contained in:
@@ -38,8 +38,7 @@ static bool ParsePrecision(FormatStringHandler &H, PrintfSpecifier &FS,
|
||||
unsigned *argIndex) {
|
||||
if (argIndex) {
|
||||
FS.setPrecision(ParseNonPositionAmount(Beg, E, *argIndex));
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E,
|
||||
analyze_format_string::PrecisionPos);
|
||||
if (Amt.isInvalid())
|
||||
@@ -461,8 +460,7 @@ bool PrintfSpecifier::fixType(QualType QT) {
|
||||
CS.setKind(ConversionSpecifier::uArg);
|
||||
HasAlternativeForm = 0;
|
||||
HasPlusPrefix = 0;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
assert(0 && "Unexpected type");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user