From 54bd880898ee2f6b1076bd36317c181416e1b6d8 Mon Sep 17 00:00:00 2001 From: tal Date: Thu, 19 May 2016 10:25:37 -0700 Subject: [PATCH] C.33_610: changed owner* to owner per issue 610 Did not change the owner to owner in the Enforcement section. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 26c3de9..f6d6437 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4018,7 +4018,7 @@ The default copy operation will just copy the `p1.p` into `p2.p` leading to a do template class Smart_ptr3 { - owner* p; // OK: explicit about ownership of *p + owner p; // OK: explicit about ownership of *p // ... public: // ...