From 91cd83e5bf012ea029683315b5c02a8dbf4008db Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Thu, 13 Feb 2020 21:36:58 -0500 Subject: [PATCH] Correct make_unique_noinit example --- doc/smart_ptr/make_unique.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/smart_ptr/make_unique.adoc b/doc/smart_ptr/make_unique.adoc index a260131..a1fc5d4 100644 --- a/doc/smart_ptr/make_unique.adoc +++ b/doc/smart_ptr/make_unique.adoc @@ -106,7 +106,7 @@ template + Constraints:: `T` is not an array. Returns:: `std::unique_ptr(new T)`. -Example:: `auto p = make_unique_noinit();` +Example:: `auto p = make_unique_noinit >();` ``` template