summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-04-09 18:59:23 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-04-09 18:59:23 (GMT)
commitbc83eb68e2fd31faa4b1ca7bb6610b30c0a24659 (patch)
tree183fb375621cff88a1b15e2afadaf52e99f859fe /src/doxygen.cpp
parent7464fdd7d4a3efd97dbc24c171556d7683648c8d (diff)
downloadDoxygen-bc83eb68e2fd31faa4b1ca7bb6610b30c0a24659.zip
Doxygen-bc83eb68e2fd31faa4b1ca7bb6610b30c0a24659.tar.gz
Doxygen-bc83eb68e2fd31faa4b1ca7bb6610b30c0a24659.tar.bz2
Fixed shadowing issue in getFortranDefs and other shadowing cases
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index c1b8745..3cf3596 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -5825,7 +5825,7 @@ static void addMemberSpecialization(const Entry *root,
//-------------------------------------------------------------------------------------------
-static void addOverloaded(const Entry *root,MemberName *mn,ClassDef *cd,
+static void addOverloaded(const Entry *root,MemberName *mn,
const QCString &funcType,const QCString &funcName,const QCString &funcArgs,
const QCString &funcDecl,const QCString &exceptions,uint64 spec)
{
@@ -6249,7 +6249,7 @@ static void findMember(const Entry *root,
}
else if (overloaded) // check if the function belongs to only one class
{
- addOverloaded(root,mn,cd,funcType,funcName,funcArgs,funcDecl,exceptions,spec);
+ addOverloaded(root,mn,funcType,funcName,funcArgs,funcDecl,exceptions,spec);
}
else // unrelated function with the same name as a member
{