diff options
Diffstat (limited to 'lib/Edit/RewriteObjCFoundationAPI.cpp')
-rw-r--r-- | lib/Edit/RewriteObjCFoundationAPI.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/Edit/RewriteObjCFoundationAPI.cpp b/lib/Edit/RewriteObjCFoundationAPI.cpp index 7cff6afeae..24a0db1875 100644 --- a/lib/Edit/RewriteObjCFoundationAPI.cpp +++ b/lib/Edit/RewriteObjCFoundationAPI.cpp @@ -486,8 +486,7 @@ static bool rewriteToNumberLiteral(const ObjCMessageExpr *Msg, return false; NSAPI::NSNumberLiteralMethodKind MK = *MKOpt; - bool CallIsInteger = false, CallIsUnsigned = false; - bool CallIsLong = false, CallIsLongLong = false; + bool CallIsUnsigned = false, CallIsLong = false, CallIsLongLong = false; bool CallIsFloating = false, CallIsDouble = false; switch (MK) { @@ -504,19 +503,18 @@ static bool rewriteToNumberLiteral(const ObjCMessageExpr *Msg, CallIsUnsigned = true; case NSAPI::NSNumberWithInt: case NSAPI::NSNumberWithInteger: - CallIsInteger = true; break; case NSAPI::NSNumberWithUnsignedLong: CallIsUnsigned = true; case NSAPI::NSNumberWithLong: - CallIsInteger = true; CallIsLong = true; + CallIsLong = true; break; case NSAPI::NSNumberWithUnsignedLongLong: CallIsUnsigned = true; case NSAPI::NSNumberWithLongLong: - CallIsInteger = true; CallIsLongLong = true; + CallIsLongLong = true; break; case NSAPI::NSNumberWithDouble: |