Skip to content

Commit

Permalink
issue #10377 Wrong syntax for output of non-C++ deprecation lists for…
Browse files Browse the repository at this point in the history
… enum members

The member names should be converted to the syntax in respect to the used language
  • Loading branch information
albert-github committed Oct 23, 2023
1 parent b61decb commit 86a92e0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/memberdef.cpp
Expand Up @@ -4447,6 +4447,10 @@ void MemberDefImpl::addListReference(Definition *)
}
}
const RefItemVector &xrefItems = xrefListItems();
if (sep!="::")
{
memName = substitute(memName,"::",sep);
}
addRefItem(xrefItems,
qualifiedName()+argsString(), // argsString is needed for overloaded functions (see bug 609624)
memLabel,
Expand Down

0 comments on commit 86a92e0

Please sign in to comment.