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()
|
||||
: open(false),
|
||||
subTreeCount(0),
|
||||
sortAscending(false),
|
||||
sortColumn(SortColumn_None),
|
||||
sortAscending(false)
|
||||
subTreeCount(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user