Skip to content

Commit

Permalink
Fixed warning 'm_depth' will be initialized after field 'm_isCheckedL…
Browse files Browse the repository at this point in the history
…ist' in docnode.cpp
  • Loading branch information
doxygen committed Apr 2, 2024
1 parent f3f8dd7 commit 5e48988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docnode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2716,7 +2716,7 @@ int DocAutoListItem::parse()
DocAutoList::DocAutoList(DocParser *parser,DocNodeVariant *parent,int indent,bool isEnumList,
int depth, bool isCheckedList):
DocCompoundNode(parser,parent), m_indent(indent), m_isEnumList(isEnumList),
m_depth(depth),m_isCheckedList(isCheckedList)
m_isCheckedList(isCheckedList), m_depth(depth)
{
}

Expand Down

0 comments on commit 5e48988

Please sign in to comment.