diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-09-26 13:50:14 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-09-26 13:50:14 +0200 |
commit | 2c04d883b16ade4acfaa9e50b5c29ca206fdfcbb (patch) | |
tree | fc5e35f23c353d83a234a824a97ff038f6edd747 /frontends/verilog | |
parent | cb1d439d1069e20b8f28d9f3e08c69c1dbcae1c1 (diff) | |
download | yosys-2c04d883b16ade4acfaa9e50b5c29ca206fdfcbb.tar.gz yosys-2c04d883b16ade4acfaa9e50b5c29ca206fdfcbb.tar.bz2 yosys-2c04d883b16ade4acfaa9e50b5c29ca206fdfcbb.zip |
Minor coding style fix
Diffstat (limited to 'frontends/verilog')
-rw-r--r-- | frontends/verilog/preproc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |