mirror of https://github.com/YosysHQ/yosys.git
Minor coding style fix
This commit is contained in:
parent
cb1d439d10
commit
2c04d883b1
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue