From: Nico Weber Date: Mon, 18 May 2015 00:00:29 +0000 (+0000) Subject: Fix confusing indent. No behavior change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e060595775295c930f969f7a9573daa33c892b9b;p=clang Fix confusing indent. No behavior change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@237546 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index 0eb5d8c338..09bb769259 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -729,7 +729,7 @@ bool Type::isSignedIntegerType() const { bool Type::isSignedIntegerOrEnumerationType() const { if (const BuiltinType *BT = dyn_cast(CanonicalType)) { return BT->getKind() >= BuiltinType::Char_S && - BT->getKind() <= BuiltinType::Int128; + BT->getKind() <= BuiltinType::Int128; } if (const EnumType *ET = dyn_cast(CanonicalType)) {