Skip to content

Commit

Permalink
Bug 733605 - Incorrect LaTeX generation for private union member in C++
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Aug 4, 2014
1 parent 7d204d1 commit a36ddbe
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/memberdef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1448,16 +1448,7 @@ void MemberDef::writeDeclaration(OutputList &ol,
if (!detailsVisible)
{
QCString doxyArgs=argsString();
if (m_impl->annMemb)
{
QCString doxyName=m_impl->annMemb->name();
if (!cname.isEmpty())
{
doxyName.prepend(cdname+getLanguageSpecificSeparator(getLanguage()));
}
ol.startDoxyAnchor(cfname,cname,m_impl->annMemb->anchor(),doxyName,doxyArgs);
}
else
if (!m_impl->annMemb)
{
QCString doxyName=name();
if (!cname.isEmpty())
Expand Down

0 comments on commit a36ddbe

Please sign in to comment.