diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-10-11 23:52:50 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-10-11 23:52:50 +0000 |
commit | 749ace614b6ea1ae11d194a60b18e1e43e1db243 (patch) | |
tree | cf228aa770ee85c3e1a8c5b42a88c87a3eaf4b38 /lib/AST/CommentSema.cpp | |
parent | b43d87b0646aa04951056c7e0d1ab9a58eb09f66 (diff) |
search for overridden methods with comment when overriding method
has none of its own. Factor in Doug's comments.
// rdar://12378793
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165771 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/CommentSema.cpp')
-rw-r--r-- | lib/AST/CommentSema.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/CommentSema.cpp b/lib/AST/CommentSema.cpp index 59dc6c7295..d664bdb632 100644 --- a/lib/AST/CommentSema.cpp +++ b/lib/AST/CommentSema.cpp @@ -413,7 +413,7 @@ HTMLEndTagComment *Sema::actOnHTMLEndTag(SourceLocation LocBegin, FullComment *Sema::actOnFullComment( ArrayRef<BlockContentComment *> Blocks) { - FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo, 0); + FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); resolveParamCommandIndexes(FC); return FC; } |