From a26abfb8e41ae2046aa0a4ee5ff9b3d91c713951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Tue, 11 Apr 2017 12:09:18 +0200 Subject: [PATCH] reduce: fix build, adapt settings. --- tools/reduce.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/reduce.cpp b/tools/reduce.cpp index 4fac0d822..1286af300 100644 --- a/tools/reduce.cpp +++ b/tools/reduce.cpp @@ -755,7 +755,7 @@ int main(int argc, char *argv[]) return EXIT_FAILURE; } // when "style" is enabled, also enable "warning", "performance" and "portability" - if (settings.isEnabled("style")) { + if (settings.isEnabled(Settings::STYLE)) { settings.addEnabled("warning"); settings.addEnabled("performance"); settings.addEnabled("portability");