summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Lorenz <arphaman@gmail.com>2017-06-29 14:18:26 +0000
committerAlex Lorenz <arphaman@gmail.com>2017-06-29 14:18:26 +0000
commit98d220e0a53a392963ce3c7336b0806e89bf49ae (patch)
tree2e218b2acf5838cedd668d956a8163752c7e5a70
parent82b016672dcf7c1f4744dc387c816e1c6f0baba0 (diff)
downloadbcm5719-llvm-98d220e0a53a392963ce3c7336b0806e89bf49ae.tar.gz
bcm5719-llvm-98d220e0a53a392963ce3c7336b0806e89bf49ae.zip
Fix NSAPI constants to reflect the current state of
NSStringMethodKind/NSDictionaryMethodKind enums Patch by Vladimir Voskresensky! Differential Revision: https://reviews.llvm.org/D34766 llvm-svn: 306680
-rw-r--r--clang/include/clang/AST/NSAPI.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/AST/NSAPI.h b/clang/include/clang/AST/NSAPI.h
index 583f9d9f1de..3757116e7c7 100644
--- a/clang/include/clang/AST/NSAPI.h
+++ b/clang/include/clang/AST/NSAPI.h
@@ -49,7 +49,7 @@ public:
NSStr_initWithString,
NSStr_initWithUTF8String
};
- static const unsigned NumNSStringMethods = 5;
+ static const unsigned NumNSStringMethods = 6;
IdentifierInfo *getNSClassId(NSClassIdKindKind K) const;
@@ -112,7 +112,7 @@ public:
NSMutableDict_setObjectForKeyedSubscript,
NSMutableDict_setValueForKey
};
- static const unsigned NumNSDictionaryMethods = 14;
+ static const unsigned NumNSDictionaryMethods = 13;
/// \brief The Objective-C NSDictionary selectors.
Selector getNSDictionarySelector(NSDictionaryMethodKind MK) const;
OpenPOWER on IntegriCloud