Skip to content

Commit a45e777

Browse files
author
Daniel Kroening
authored
Merge pull request #2397 from tautschnig/vs-indent
expr2c: indent output of code_deadt
2 parents 38c7889 + f0ceaf7 commit a45e777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansi-c/expr2c.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2786,7 +2786,7 @@ std::string expr2ct::convert_code_dead(
27862786
return convert_norep(src, precedence);
27872787
}
27882788

2789-
return "dead "+convert(src.op0())+";";
2789+
return indent_str(indent) + "dead " + convert(src.op0()) + ";";
27902790
}
27912791

27922792
std::string expr2ct::convert_code_for(

0 commit comments

Comments
 (0)