Skip to content

Commit

Permalink
Bug 755939 - Warning refers to incorrect line for undocumented member…
Browse files Browse the repository at this point in the history
… function (C++)
  • Loading branch information
Dimitri van Heesch committed Dec 28, 2015
1 parent 1b402f4 commit a112c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/memberdef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3237,7 +3237,7 @@ void MemberDef::warnIfUndocumented()
!isReference() && !isDeleted()
)
{
warn_undoc(d->getDefFileName(),d->getDefLine(),"Member %s%s (%s) of %s %s is not documented.",
warn_undoc(getDefFileName(),getDefLine(),"Member %s%s (%s) of %s %s is not documented.",
qPrint(name()),qPrint(argsString()),qPrint(memberTypeName()),t,qPrint(d->name()));
}
}
Expand Down

0 comments on commit a112c70

Please sign in to comment.