r237546 - Fix confusing indent. No behavior change.
Nico Weber
nicolasweber at gmx.de
Sun May 17 17:00:29 PDT 2015
Author: nico
Date: Sun May 17 19:00:29 2015
New Revision: 237546
URL: http://llvm.org/viewvc/llvm-project?rev=237546&view=rev
Log:
Fix confusing indent. No behavior change.
Modified:
cfe/trunk/lib/AST/Type.cpp
Modified: cfe/trunk/lib/AST/Type.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/Type.cpp?rev=237546&r1=237545&r2=237546&view=diff
==============================================================================
--- cfe/trunk/lib/AST/Type.cpp (original)
+++ cfe/trunk/lib/AST/Type.cpp Sun May 17 19:00:29 2015
@@ -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)) {
More information about the cfe-commits
mailing list