We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3159ee commit 0af91f8Copy full SHA for 0af91f8
Lesson1/Exercise02/Exercise_2_err.cpp
@@ -11,7 +11,7 @@ auto build_array(Args &&... args) -> std::array<typename std::common_type<Args..
11
12
int main()
13
{
14
- auto data = build_array(1, 0u, 'a', 3.2f);
+ auto data = build_array(1, 0u, 'a', 3.2f, false);
15
for (auto i : data)
16
std::cout << i << " ";
17
std::cout << std::endl;
0 commit comments