From 47344d25f9697a2f92603ab4d79e22f43ea2e4be Mon Sep 17 00:00:00 2001 From: xris1658 <46947835+xris1658@users.noreply.github.com> Date: Mon, 8 Aug 2022 09:35:20 +0800 Subject: [PATCH] Fix title of Item 21. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “而非new”->“而非直接使用new” --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63b8f5e..71266f4 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ 1. [Item 18:对于独占资源使用std::unique_ptr](src/4.SmartPointers/item18.md) 由 @wendajiang贡献 2. [Item 19:对于共享资源使用std::shared_ptr](src/4.SmartPointers/item19.md) 已修订 3. [Item 20:当std::shard_ptr可能悬空时使用std::weak_ptr](src/4.SmartPointers/item20.md) - 4. [Item 21:优先考虑使用std::make_unique和std::make_shared而非new](src/4.SmartPointers/item21.md) 由 @pusidun贡献 + 4. [Item 21:优先考虑使用std::make_unique和std::make_shared,而非直接使用new](src/4.SmartPointers/item21.md) 由 @pusidun贡献 5. [Item 22:当使用Pimpl惯用法,请在实现文件中定义特殊成员函数](src/4.SmartPointers/item22.md) 由 @BlurryLight贡献 5. __右值引用,移动语义,完美转发__ 1. [Item 23:理解std::move和std::forward](src/5.RRefMovSemPerfForw/item23.md) 由 @BlurryLight贡献