diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-01-02 22:54:34 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-01-02 22:54:34 +0000 |
commit | 0196cab54007ff072ec2642da8911c6b7e8d3fb5 (patch) | |
tree | 4a0181db2ba74855d3cdd17cadec69a5cc12d5ef /Parse/Parser.cpp | |
parent | 529bd02affa96a311dd9ab131f2ab4d833017fb7 (diff) |
New declarations/defs for Objc2's foreach-statement. This is work in progress.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45511 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Parse/Parser.cpp')
-rw-r--r-- | Parse/Parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Parse/Parser.cpp b/Parse/Parser.cpp index 04cfea6f07..4bcbfc7c21 100644 --- a/Parse/Parser.cpp +++ b/Parse/Parser.cpp @@ -254,6 +254,7 @@ void Parser::Initialize() { ObjcPropertyAttrs[objc_copy] = &PP.getIdentifierTable().get("copy"); ObjcPropertyAttrs[objc_nonatomic] = &PP.getIdentifierTable().get("nonatomic"); + ObjCForCollectionInKW = &PP.getIdentifierTable().get("in"); } } |