From ea559a35613a5bbf6889729c4a870c5196acdc4a Mon Sep 17 00:00:00 2001 From: Rajkaran Date: Fri, 21 Aug 2026 22:25:41 +0530 Subject: [PATCH] docs: fix http:// to https:// in CppCoreGuidelines links (#1267) Changed 3 instances of http://isocpp.github.io to https://isocpp.github.io in docs/headers.md to use secure HTTPS protocol for links to C++ Core Guidelines. --- docs/headers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/headers.md b/docs/headers.md index 557ecb3..82cc338 100644 --- a/docs/headers.md +++ b/docs/headers.md @@ -450,7 +450,7 @@ not_null& operator+=(std::ptrdiff_t) = delete; not_null& operator-=(std::ptrdiff_t) = delete; ``` -Explicitly deleted operators. Pointers point to single objects ([I.13: Do not pass an array as a single pointer](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#ri-array)), so don't allow these operators. +Explicitly deleted operators. Pointers point to single objects ([I.13: Do not pass an array as a single pointer](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#ri-array)), so don't allow these operators. ##### Observers @@ -472,7 +472,7 @@ Dereference the underlying pointer. void operator[](std::ptrdiff_t) const = delete; ``` -Array index operator is explicitly deleted. Pointers point to single objects ([I.13: Do not pass an array as a single pointer](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#ri-array)), so don't allow treating them as an array. +Array index operator is explicitly deleted. Pointers point to single objects ([I.13: Do not pass an array as a single pointer](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#ri-array)), so don't allow treating them as an array. ```cpp void swap(not_null& other) { std::swap(ptr_, other.ptr_); } @@ -547,7 +547,7 @@ template not_null operator+(std::ptrdiff_t, const not_null&) = delete; ``` -Addition and subtraction are explicitly deleted. Pointers point to single objects ([I.13: Do not pass an array as a single pointer](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#ri-array)), so don't allow these operators. +Addition and subtraction are explicitly deleted. Pointers point to single objects ([I.13: Do not pass an array as a single pointer](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#ri-array)), so don't allow these operators. ##### STL integration