Minor coding style fix
authorClifford Wolf <clifford@clifford.at>
Tue, 26 Sep 2017 11:50:14 +0000 (13:50 +0200)
committerClifford Wolf <clifford@clifford.at>
Tue, 26 Sep 2017 11:50:14 +0000 (13:50 +0200)
frontends/verilog/preproc.cc

index 67a6d18eaff4cf81a4b27034560f32a4b8cf68f0..ee742d485d116dcc90db64809586ab5ba8b7f144 100644 (file)
@@ -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) {