Skip to content

Commit

Permalink
Merge pull request #6981 from albert-github/feature/issue_6979
Browse files Browse the repository at this point in the history
issue #6979 Method parameters documented inline are not present in documentation of overriding/implementing methods
  • Loading branch information
doxygen committed May 11, 2019
2 parents 9a8bf57 + 2a8f060 commit ad9af44
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/memberdef.cpp
Expand Up @@ -5929,6 +5929,7 @@ void MemberDefImpl::copyArgumentNames(MemberDef *bmd)
for (;(argDst=aliDst.current()) && (argSrc=aliSrc.current());++aliDst,++aliSrc)
{
argDst->name = argSrc->name;
argDst->docs = argSrc->docs;
}
}
}
Expand All @@ -5943,6 +5944,7 @@ void MemberDefImpl::copyArgumentNames(MemberDef *bmd)
for (;(argDst=aliDst.current()) && (argSrc=aliSrc.current());++aliDst,++aliSrc)
{
argDst->name = argSrc->name;
argDst->docs = argSrc->docs;
}
}
}
Expand Down

0 comments on commit ad9af44

Please sign in to comment.