Skip to content

Commit

Permalink
Fix order of member initilaization
Browse files Browse the repository at this point in the history
  • Loading branch information
gruenich authored and Christoph Grüninger committed Jan 23, 2016
1 parent aa61a4b commit 6b1ebb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/latexgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ LatexCodeGenerator::LatexCodeGenerator(FTextStream &t,const QCString &relPath,co
setTextStream(t);
}

LatexCodeGenerator::LatexCodeGenerator() : m_col(0), m_streamSet(FALSE)
LatexCodeGenerator::LatexCodeGenerator() : m_streamSet(FALSE), m_col(0)
{
m_prettyCode=Config_getBool(LATEX_SOURCE_CODE);
}
Expand Down
2 changes: 1 addition & 1 deletion src/membergroup.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class MemberGroupSDict : public SIntDict<MemberGroup>
/** Data collected for a member group */
struct MemberGroupInfo
{
MemberGroupInfo() : m_sli(0), docLine(-1) {}
MemberGroupInfo() : docLine(-1), m_sli(0) {}
~MemberGroupInfo() { delete m_sli; m_sli=0; }
void setRefItems(const QList<ListItemInfo> *sli);
QCString header;
Expand Down

0 comments on commit 6b1ebb6

Please sign in to comment.