[pushed] wwwdocs: gcc-5: Adjust www.open-std.org links to https

Message ID 20230121173312.6E2FE33E62@hamza.pair.com
State Committed
Headers
Series [pushed] wwwdocs: gcc-5: Adjust www.open-std.org links to https |

Commit Message

Gerald Pfeifer Jan. 21, 2023, 5:33 p.m. UTC
  Business as usual.

Gerald
---
 htdocs/gcc-5/changes.html    | 2 +-
 htdocs/gcc-5/porting_to.html | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
  

Patch

diff --git a/htdocs/gcc-5/changes.html b/htdocs/gcc-5/changes.html
index f6742fb0..893e35de 100644
--- a/htdocs/gcc-5/changes.html
+++ b/htdocs/gcc-5/changes.html
@@ -417,7 +417,7 @@  void operator delete[] wwwdocs: (void *, std::size_t) noexcept;</pre></blockquote>
       These warnings can be used at compile time, but they are more
       useful in combination with link-time optimization.</li>
 <li>G++ no longer supports
-  <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3639.html">N3639</a>
+  <a href="https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3639.html">N3639</a>
   variable length arrays, as they were removed from the C++14 working paper
   prior to ratification.  GNU VLAs are still supported, so VLA support is
   now the same in C++14 mode as in C++98 and C++11 modes.</li>
diff --git a/htdocs/gcc-5/porting_to.html b/htdocs/gcc-5/porting_to.html
index b8942aa8..f2a831c4 100644
--- a/htdocs/gcc-5/porting_to.html
+++ b/htdocs/gcc-5/porting_to.html
@@ -380,7 +380,7 @@  For instance:</p>
 
 <p>Converting <code>std::nullptr_t</code> to <code>bool</code> in C++11
 mode now requires direct-initialization.  This has been changed in
-<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1423">DR 1423</a>.</p>
+<a href="https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1423">DR 1423</a>.</p>
 
 <p>As a consequence, the following is invalid:</p>
 
@@ -400,7 +400,7 @@  converting <code>nullptr</code> to <code>bool</code>.
 <h3 id="dr1579">Return by converting move constructor</h3>
 
 <p>GCC 5 implements
-<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1579">DR 1579</a>
+<a href="https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1579">DR 1579</a>
 which means that when compiling a function like:</p>
 
 <pre><code>