]> granicus.if.org Git - clang/commitdiff
Fix confusing indent. No behavior change.
authorNico Weber <nicolasweber@gmx.de>
Mon, 18 May 2015 00:00:29 +0000 (00:00 +0000)
committerNico Weber <nicolasweber@gmx.de>
Mon, 18 May 2015 00:00:29 +0000 (00:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@237546 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/Type.cpp

index 0eb5d8c338ce6a462476a18e309caf8b32e7a4ec..09bb7692596c696d0315fa68c0f5dd611a26b99a 100644 (file)
@@ -729,7 +729,7 @@ bool Type::isSignedIntegerType() const {
 bool Type::isSignedIntegerOrEnumerationType() const {
   if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
     return BT->getKind() >= BuiltinType::Char_S &&
-    BT->getKind() <= BuiltinType::Int128;
+           BT->getKind() <= BuiltinType::Int128;
   }
   
   if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {