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:
Carlo Marcelo Arenas Belón 2019-02-12 00:07:59 -08:00 committed by Sebastian
parent 84a1f2fcf8
commit 03c9477028
1 changed files with 1 additions and 1 deletions

View File

@ -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),