We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e255c51 commit ce00cb9Copy full SHA for ce00cb9
src/taint-analysis/taint_config.cpp
@@ -235,13 +235,11 @@ void taint_build_cmdline_from_config(
235
else
236
cmdline.set("lazy-methods");
237
238
- {
239
- const auto attr_it = cfg.object.find("verbosity");
240
- if (attr_it != cfg.object.cend())
241
- cmdline.set("verbosity", attr_it->second.value);
242
- }
+ auto attr_it = cfg.object.find("verbosity");
+ if(attr_it != cfg.object.cend())
+ cmdline.set("verbosity", attr_it->second.value);
243
244
- auto attr_it = cfg.object.find("program");
+ attr_it = cfg.object.find("program");
245
if (attr_it == cfg.object.cend())
246
return;
247
const std::string program_json_fname=
0 commit comments