Skip to content

Commit 21574d6

Browse files
authored
Merge pull request #4816 from romainbrenguier/bugfix/value-sett-output
Fix indentation in value_sett output
2 parents 664de48 + 039473e commit 21574d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pointer-analysis/value_set.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ void value_sett::output(std::ostream &out, const std::string &indent) const
211211
{
212212
out << ", ";
213213
if(width >= 40)
214-
out << "\n" << std::string(' ', indent.size()) << " ";
214+
out << "\n" << std::string(indent.size(), ' ') << " ";
215215
}
216216
}
217217

0 commit comments

Comments
 (0)