r224185 - NFC: Minor formatting fix
Will Wilson
will at indefiant.com
Fri Dec 12 20:38:19 PST 2014
Author: lantictac
Date: Fri Dec 12 22:38:19 2014
New Revision: 224185
URL: http://llvm.org/viewvc/llvm-project?rev=224185&view=rev
Log:
NFC: Minor formatting fix
Modified:
cfe/trunk/lib/AST/TemplateBase.cpp
Modified: cfe/trunk/lib/AST/TemplateBase.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/TemplateBase.cpp?rev=224185&r1=224184&r2=224185&view=diff
==============================================================================
--- cfe/trunk/lib/AST/TemplateBase.cpp (original)
+++ cfe/trunk/lib/AST/TemplateBase.cpp Fri Dec 12 22:38:19 2014
@@ -40,7 +40,7 @@ static void printIntegral(const Template
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);
More information about the cfe-commits
mailing list