Skip to content

Commit

Permalink
Merge pull request #466 from albert-github/feature/bug_764656
Browse files Browse the repository at this point in the history
Bug 764656 - generated xml has errors
  • Loading branch information
Dimitri van Heesch committed Apr 7, 2016
2 parents 3731948 + d3078f4 commit 4c03fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xmlgen.cpp
Expand Up @@ -808,7 +808,7 @@ static void generateXMLForMember(MemberDef *md,FTextStream &ti,FTextStream &t,De
{
QCString bitfield = md->bitfieldString();
if (bitfield.at(0)==':') bitfield=bitfield.mid(1);
t << " <bitfield>" << bitfield << "</bitfield>" << endl;
t << " <bitfield>" << convertToXML(bitfield) << "</bitfield>" << endl;
}

MemberDef *rmd = md->reimplements();
Expand Down

0 comments on commit 4c03fcc

Please sign in to comment.