Correct make_unique_noinit example

This commit is contained in:
Glen Fernandes
2020-02-13 21:36:58 -05:00
parent 2fdb8c4b0a
commit 91cd83e5bf

View File

@ -106,7 +106,7 @@ template<class T>
+
Constraints:: `T` is not an array.
Returns:: `std::unique_ptr<T>(new T)`.
Example:: `auto p = make_unique_noinit<double[1024]>();`
Example:: `auto p = make_unique_noinit<std::array<double, 1024> >();`
```
template<class T>