diff options
author | Chris Lattner <sabre@nondot.org> | 2008-08-23 02:02:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-08-23 02:02:23 +0000 |
commit | 5ffb14b7e88e587cd2f78dcc3a966a64108920f0 (patch) | |
tree | 9acc7ad6c32a484f03da9b0e2fb5b202f0f79571 /lib/Parse/Parser.cpp | |
parent | 06f548596beef4c0a227a45cba996497f99566c0 (diff) |
we already have a handle on the 'in' keyword, don't bother getting two.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55217 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/Parser.cpp')
-rw-r--r-- | lib/Parse/Parser.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp index 330c22d1f4..ccdf264bd8 100644 --- a/lib/Parse/Parser.cpp +++ b/lib/Parse/Parser.cpp @@ -265,7 +265,6 @@ void Parser::Initialize() { ObjCPropertyAttrs[objc_copy] = &PP.getIdentifierTable().get("copy"); ObjCPropertyAttrs[objc_nonatomic] = &PP.getIdentifierTable().get("nonatomic"); - ObjCForCollectionInKW = &PP.getIdentifierTable().get("in"); } Ident_super = &PP.getIdentifierTable().get("super"); |