Skip to content

Commit abdb86b

Browse files
authored
Fix formatting of if statement in test code
1 parent cb6f4cf commit abdb86b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/library_checker_aizu_tests/data_structures/simple_tree_inc_walk.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ int main() {
2525
int idx = st.walk(k, n - 1, [&](int sum) {
2626
return sum == 0;
2727
});
28-
if(idx == n) idx = -1;
28+
if (idx == n) idx = -1;
2929
cout << idx << '\n';
3030
} else {
3131
assert(type == 4);

0 commit comments

Comments
 (0)