Fix a typo that breaks the GCC build. Turns out that Clang isn't

diagnosing this code as an error when it should, so I've filed
http://llvm.org/bugs/show_bug.cgi?id=7325. 

llvm-svn: 105683
This commit is contained in:
Douglas Gregor 2010-06-09 05:25:34 +00:00
parent 8fc7823e4d
commit b4e3533ce1
1 changed files with 1 additions and 1 deletions

View File

@ -740,7 +740,7 @@ bool FormatSpecifier::fixType(QualType QT) {
CS.setKind(ConversionSpecifier::dArg);
HasAlternativeForm = 0;
}
else if (QT->isUnsignedIntegerType) {
else if (QT->isUnsignedIntegerType()) {
CS.setKind(ConversionSpecifier::uArg);
HasAlternativeForm = 0;
}