Fix title of Item 21.

“而非new”->“而非直接使用new”
This commit is contained in:
xris1658 2022-08-08 09:35:20 +08:00 committed by David
parent 870210524e
commit 47344d25f9

View File

@ -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贡献