diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 | 
| commit | bfef399519ca9b8a4b4c6b563253bad7e0eeffe0 (patch) | |
| tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /include/clang/AST/CommentSema.h | |
| parent | 6a0372513edbc473b538d2f724efac50405d6fef (diff) | |
Diffstat (limited to 'include/clang/AST/CommentSema.h')
| -rw-r--r-- | include/clang/AST/CommentSema.h | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/include/clang/AST/CommentSema.h b/include/clang/AST/CommentSema.h index 15e454dcc389b..39109602b1483 100644 --- a/include/clang/AST/CommentSema.h +++ b/include/clang/AST/CommentSema.h @@ -58,9 +58,6 @@ class Sema {    /// AST node for the \\brief command and its aliases.    const BlockCommandComment *BriefCommand; -  /// AST node for the \\returns command and its aliases. -  const BlockCommandComment *ReturnsCommand; -      /// AST node for the \\headerfile command.    const BlockCommandComment *HeaderfileCommand; @@ -211,7 +208,11 @@ public:    bool isFunctionDecl();    bool isAnyFunctionDecl(); + +  /// \returns \c true if declaration that this comment is attached to declares +  /// a function pointer.    bool isFunctionPointerVarDecl(); +  bool isFunctionOrMethodVariadic();    bool isObjCMethodDecl();    bool isObjCPropertyDecl();    bool isTemplateOrSpecialization(); @@ -220,6 +221,8 @@ public:    bool isUnionDecl();    bool isObjCInterfaceDecl();    bool isObjCProtocolDecl(); +  bool isClassTemplateDecl(); +  bool isFunctionTemplateDecl();    ArrayRef<const ParmVarDecl *> getParamVars();  | 
