Initialize BranchNodeData members in declaration order
Doing it out of order is harmless here, but would result gcc -Wreorder warnings.
This commit is contained in:
@@ -602,9 +602,9 @@ private:
|
|||||||
{
|
{
|
||||||
BranchNodeData()
|
BranchNodeData()
|
||||||
: open(false),
|
: open(false),
|
||||||
subTreeCount(0),
|
sortAscending(false),
|
||||||
sortColumn(SortColumn_None),
|
sortColumn(SortColumn_None),
|
||||||
sortAscending(false)
|
subTreeCount(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user