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),
|
debugnormal(false),
|
||||||
debugwarnings(false),
|
debugwarnings(false),
|
||||||
debugtemplate(false),
|
debugtemplate(false),
|
||||||
|
maxCtuDepth(2),
|
||||||
dump(false),
|
dump(false),
|
||||||
exceptionHandling(false),
|
exceptionHandling(false),
|
||||||
inconclusive(false),
|
inconclusive(false),
|
||||||
jointSuppressionReport(false),
|
jointSuppressionReport(false),
|
||||||
maxCtuDepth(2),
|
|
||||||
experimental(false),
|
experimental(false),
|
||||||
experimentalFast(false),
|
experimentalFast(false),
|
||||||
quiet(false),
|
quiet(false),
|
||||||
|
|
Loading…
Reference in New Issue