Skip to content

Commit d5b3b89

Browse files
Fix indentation in value_sett output
The character and size arguments where inverted.
1 parent 64c0c7d commit d5b3b89

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
@@ -206,7 +206,7 @@ void value_sett::output(
206206
{
207207
out << ", ";
208208
if(width >= 40)
209-
out << "\n" << std::string(' ', indent.size()) << " ";
209+
out << "\n" << std::string(indent.size(), ' ') << " ";
210210
}
211211
}
212212

0 commit comments

Comments
 (0)