Skip to content

Commit c0d83ec

Browse files
fix test resize.cc
1 parent abc9722 commit c0d83ec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/0026.container/0001.vector/resize.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ void print_info(auto rem, fast_io::vector<int> const &c)
1010

1111
int main()
1212
{
13-
fast_io::vector<int> c = {1, 2, 3};
13+
fast_io::vector<int> c{1, 2, 3};
1414
print_info("The vector holds: ", c);
1515

1616
c.resize(5);
@@ -21,4 +21,4 @@ int main()
2121

2222
c.resize(6, 4);
2323
print_info("After resize up to 6 (initializer = 4): ", c);
24-
}
24+
}

0 commit comments

Comments
 (0)