NFC: Minor formatting fix

llvm-svn: 224185
This commit is contained in:
Will Wilson 2014-12-13 04:38:19 +00:00
parent 67c41ba0dd
commit 70a1568d91
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ static void printIntegral(const TemplateArgument &TemplArg,
const ::clang::Type *T = TemplArg.getIntegralType().getTypePtr();
const llvm::APSInt &Val = TemplArg.getAsIntegral();
if (const EnumType* ET = T->getAs<EnumType>()) {
if (const EnumType *ET = T->getAs<EnumType>()) {
for (const EnumConstantDecl* ECD : ET->getDecl()->enumerators()) {
if (ECD->getInitVal() == Val) {
ECD->printQualifiedName(Out, Policy);