diff options
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Parse/Action.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index ee852ff95c..a9b3213323 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -2365,6 +2365,12 @@ public: /// parsed. virtual void CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols, unsigned NumProtocols) { } + + /// \brief Code completion for a protocol declaration or definition, after + /// the @protocol but before any identifier. + /// + /// \param S the scope in which the protocol declaration occurs. + virtual void CodeCompleteObjCProtocolDecl(Scope *S) { } //@} }; |