You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the "Unique pointers" chapter, in the first reference, there is an example of calling make_unique. const auto x = std::make_unique<const int>{75};
It uses curly braces instead of parentheses, which won't compile.
The text was updated successfully, but these errors were encountered:
In the "Unique pointers" chapter, in the first reference, there is an example of calling make_unique.
const auto x = std::make_unique<const int>{75};
It uses curly braces instead of parentheses, which won't compile.
The text was updated successfully, but these errors were encountered: