Skip to content

Commit ce00cb9

Browse files
committed
Updates requested in the review.
1 parent e255c51 commit ce00cb9

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/taint-analysis/taint_config.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,11 @@ void taint_build_cmdline_from_config(
235235
else
236236
cmdline.set("lazy-methods");
237237

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-
}
238+
auto attr_it = cfg.object.find("verbosity");
239+
if(attr_it != cfg.object.cend())
240+
cmdline.set("verbosity", attr_it->second.value);
243241

244-
auto attr_it = cfg.object.find("program");
242+
attr_it = cfg.object.find("program");
245243
if (attr_it == cfg.object.cend())
246244
return;
247245
const std::string program_json_fname=

0 commit comments

Comments
 (0)