From: Clifford Wolf Date: Tue, 26 Sep 2017 11:50:14 +0000 (+0200) Subject: Minor coding style fix X-Git-Tag: yosys-0.8~315^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c04d883b16ade4acfaa9e50b5c29ca206fdfcbb;p=yosys.git Minor coding style fix --- diff --git a/frontends/verilog/preproc.cc b/frontends/verilog/preproc.cc index 67a6d18ea..ee742d485 100644 --- a/frontends/verilog/preproc.cc +++ b/frontends/verilog/preproc.cc @@ -350,7 +350,7 @@ std::string frontend_verilog_preproc(std::istream &f, std::string filename, cons if (tok == "`include") { skip_spaces(); std::string fn = next_token(true); - while(try_expand_macro(defines_with_args, defines_map, fn)) { + while (try_expand_macro(defines_with_args, defines_map, fn)) { fn = next_token(); } while (1) {