diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-07 04:47:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-07 04:47:29 +0000 |
commit | 28c0b7df574599d4c19a4c09ca61bb3d70a338cc (patch) | |
tree | 2d841bb625fb1fe9325833500b21c00e9e1d8ffa | |
parent | 065f0d7b00c3cd2b3139ebd105f50462fc778859 (diff) |
add an example.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49309 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Parse/DeclSpec.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/Parse/DeclSpec.h b/include/clang/Parse/DeclSpec.h index b057292304..e52f307e6e 100644 --- a/include/clang/Parse/DeclSpec.h +++ b/include/clang/Parse/DeclSpec.h @@ -122,7 +122,9 @@ private: // attributes. AttributeList *AttrList; - // List of protocol qualifiers for objective-c classes. + // List of protocol qualifiers for objective-c classes. Used for + // protocol-qualified interfaces "NString<foo>" and protocol-qualified id + // "id<foo>". llvm::SmallVector<Action::DeclTy *, 8> *ProtocolQualifiers; // SourceLocation info. These are null if the item wasn't specified or if |