From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 113999 invoked by alias); 24 Jan 2020 15:30:53 -0000 Mailing-List: contact gcc-cvs-wwwdocs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-cvs-wwwdocs-owner@gcc.gnu.org Received: (qmail 113942 invoked by uid 9362); 24 Jan 2020 15:30:53 -0000 Date: Fri, 24 Jan 2020 15:30:00 -0000 Message-ID: <20200124153053.113938.qmail@sourceware.org> From: redi@gcc.gnu.org To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. b1bd21c81af3bc3098fca4293af164a6c6a4544a X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: f526c4724b183482fc7fe1a5ce78e1597fd1005f X-Git-Newrev: b1bd21c81af3bc3098fca4293af164a6c6a4544a X-SW-Source: 2020/txt/msg00076.txt This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via b1bd21c81af3bc3098fca4293af164a6c6a4544a (commit) via 8fdda0b261bcd59e3bed41228fe9ced40ad1397f (commit) from f526c4724b183482fc7fe1a5ce78e1597fd1005f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b1bd21c81af3bc3098fca4293af164a6c6a4544a Author: Jonathan Wakely Date: Fri Jan 24 15:30:06 2020 +0000 Make it clear C++2a support is experimental diff --git a/htdocs/gcc-10/changes.html b/htdocs/gcc-10/changes.html index ef27c9bb..dcce6b86 100644 --- a/htdocs/gcc-10/changes.html +++ b/htdocs/gcc-10/changes.html @@ -331,7 +331,7 @@ a work-in-progress.

Runtime Library (libstdc++)

    -
  • Improved C++2a support, including: +
  • Improved experimental C++2a support, including:
    • std::span (thanks to JeanHeyd Meneide).
    • commit 8fdda0b261bcd59e3bed41228fe9ced40ad1397f Author: Jonathan Wakely Date: Fri Jan 24 15:29:46 2020 +0000 Document C++ header reorganisation diff --git a/htdocs/gcc-10/porting_to.html b/htdocs/gcc-10/porting_to.html index 7d45a962..980d3af1 100644 --- a/htdocs/gcc-10/porting_to.html +++ b/htdocs/gcc-10/porting_to.html @@ -49,6 +49,26 @@ and provide solutions. Let us know if you have suggestions for improvements! extern int y; // correct declaration in a header file + +

      C++ language issues

      + +

      Header dependency changes

      + +

      Some C++ Standard Library headers have been changed to no longer include +the <stdexcept> header. +As such, C++ programs that used components defined in +<stdexcept> or <string> without +explicitly including the right headers will no longer compile. +

      +

      +Previously components such as std::runtime_error, +std::string and std::allocator +were implicitly defined after including unrelated headers such as +<array> and <optional>. +Correct code should include the appropriate headers for the classes being used. +

      + +

      Fortran language issues

      Argument mismatches

      ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-10/changes.html | 2 +- htdocs/gcc-10/porting_to.html | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) hooks/post-receive -- gcc-wwwdocs