3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 18:05:24 +00:00

Minor coding style fix

This commit is contained in:
Clifford Wolf 2017-09-26 13:50:14 +02:00
parent cb1d439d10
commit 2c04d883b1

View 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) {