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:
Vadim Zeitlin
2017-12-16 17:32:53 +01:00
parent eef994016a
commit 8d9f0e6fef

View File

@@ -602,9 +602,9 @@ private:
{
BranchNodeData()
: open(false),
subTreeCount(0),
sortAscending(false),
sortColumn(SortColumn_None),
sortAscending(false)
subTreeCount(0)
{
}