diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 73841e2..dceff01 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -17935,7 +17935,6 @@ The "raw-pointer" notation (e.g. `int*`) is assumed to have its most common mean Owners should be converted to resource handles (e.g., `unique_ptr` or `vector`) or marked `owner`. * `owner` // a `T*` that owns the object pointed/referred to; may be `nullptr`. -* `owner` // a `T&` that owns the object pointed/referred to. `owner` is used to mark owning pointers in code that cannot be upgraded to use proper resource handles. Reasons for that include: