From 6d018fcf5f5643588b8f6d72908af41ad686d277 Mon Sep 17 00:00:00 2001 From: Francisco Moretti Date: Sat, 25 Jun 2022 15:53:25 -0300 Subject: [PATCH] C.166: Use markdown format and document title for link (#1929) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 26c6a9e..78619dd 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -8440,7 +8440,7 @@ Many parts of the C++ semantics assume its default meaning. If you "mess with" operator `&` be sure that its definition has matching meanings for `->`, `[]`, `*`, and `.` on the result type. Note that operator `.` currently cannot be overloaded so a perfect system is impossible. -We hope to remedy that: . +We hope to remedy that: [Operator Dot (R2)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4477.pdf). Note that `std::addressof()` always yields a built-in pointer. ##### Enforcement