From 9028b62106082b3cb1b98ae33171b94c5e2583b4 Mon Sep 17 00:00:00 2001 From: Kimi MA Date: Fri, 23 Dec 2022 21:57:35 +0800 Subject: [PATCH] R.33 add missing space in the title (#2014) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4974db3..344544c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9972,7 +9972,7 @@ Using `unique_ptr` in this way both documents and enforces the function call's o * (Simple) Warn if a function takes a `Unique_pointer` parameter by lvalue reference and does not either assign to it or call `reset()` on it on at least one code path. Suggest taking a `T*` or `T&` instead. * (Simple) ((Foundation)) Warn if a function takes a `Unique_pointer` parameter by reference to `const`. Suggest taking a `const T*` or `const T&` instead. -### R.33: Take a `unique_ptr&` parameter to express that a function reseats the`widget` +### R.33: Take a `unique_ptr&` parameter to express that a function reseats the `widget` ##### Reason