From 03c9477028eddfcaa08f00a42534583e0b9ff419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlo=20Marcelo=20Arenas=20Bel=C3=B3n?= Date: Tue, 12 Feb 2019 00:07:59 -0800 Subject: [PATCH] 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), --- lib/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/settings.cpp b/lib/settings.cpp index 6d692dc1f..63de049e1 100644 --- a/lib/settings.cpp +++ b/lib/settings.cpp @@ -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),