settings: -Wreorder fix (#1664)
otherwise showing (with Apple LLVM version 10.0.0): lib/settings.cpp:34:7: warning: field 'jointSuppressionReport' will be initialized after field 'maxCtuDepth' [-Wreorder] jointSuppressionReport(false),
This commit is contained in:
parent
84a1f2fcf8
commit
03c9477028
|
@ -28,11 +28,11 @@ Settings::Settings()
|
|||
debugnormal(false),
|
||||
debugwarnings(false),
|
||||
debugtemplate(false),
|
||||
maxCtuDepth(2),
|
||||
dump(false),
|
||||
exceptionHandling(false),
|
||||
inconclusive(false),
|
||||
jointSuppressionReport(false),
|
||||
maxCtuDepth(2),
|
||||
experimental(false),
|
||||
experimentalFast(false),
|
||||
quiet(false),
|
||||
|
|
Loading…
Reference in New Issue