aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/verilog
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2017-09-26 13:50:14 +0200
committerClifford Wolf <clifford@clifford.at>2017-09-26 13:50:14 +0200
commit2c04d883b16ade4acfaa9e50b5c29ca206fdfcbb (patch)
treefc5e35f23c353d83a234a824a97ff038f6edd747 /frontends/verilog
parentcb1d439d1069e20b8f28d9f3e08c69c1dbcae1c1 (diff)
downloadyosys-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.cc2
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) {