diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-10-15 18:58:50 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-10-15 18:58:50 +0000 |
commit | 6553c686cb419b22b4c79d05a422fb1e96f6e122 (patch) | |
tree | 8911b7c2e9cdb19d6e9a91cfdd698f400d3ac824 /include/clang/AST/Comment.h | |
parent | 9a022bb007a3e77e1ac1330f955a239cfb1dd0fb (diff) |
structured document comment: patch to provide comment for overriding function
template when comment is comming from overridden declaration.
// rdar://12378793
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/Comment.h')
-rw-r--r-- | include/clang/AST/Comment.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/clang/AST/Comment.h b/include/clang/AST/Comment.h index b946816b8c..00db117991 100644 --- a/include/clang/AST/Comment.h +++ b/include/clang/AST/Comment.h @@ -759,9 +759,7 @@ public: return getNumArgs() > 0; } - StringRef getParamName() const { - return Args[0].Text; - } + StringRef getParamName(comments::FullComment *FC) const; SourceRange getParamNameRange() const { return Args[0].Range; |