Skip to content

Commit 0af91f8

Browse files
v1
1 parent e3159ee commit 0af91f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lesson1/Exercise02/Exercise_2_err.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ auto build_array(Args &&... args) -> std::array<typename std::common_type<Args..
1111

1212
int main()
1313
{
14-
auto data = build_array(1, 0u, 'a', 3.2f);
14+
auto data = build_array(1, 0u, 'a', 3.2f, false);
1515
for (auto i : data)
1616
std::cout << i << " ";
1717
std::cout << std::endl;

0 commit comments

Comments
 (0)