From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 5EBAB38515D2; Tue, 24 May 2022 12:07:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5EBAB38515D2 To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. f55f35c86c68143a2b148c66e4b0b560c852ce6f X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: b89dff3305518093bc2cbfce6f5bb4845992b88b X-Git-Newrev: f55f35c86c68143a2b148c66e4b0b560c852ce6f Message-Id: <20220524120753.5EBAB38515D2@sourceware.org> Date: Tue, 24 May 2022 12:07:53 +0000 (GMT) From: Jonathan Wakely X-BeenThere: gcc-cvs-wwwdocs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs-wwwdocs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2022 12:07:53 -0000 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 f55f35c86c68143a2b148c66e4b0b560c852ce6f (commit) from b89dff3305518093bc2cbfce6f5bb4845992b88b (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 f55f35c86c68143a2b148c66e4b0b560c852ce6f Author: Jonathan Wakely Date: Tue May 24 13:06:11 2022 +0100 Document changes in libstdc++ diff --git a/htdocs/gcc-13/porting_to.html b/htdocs/gcc-13/porting_to.html index b3e0895a..84a00f21 100644 --- a/htdocs/gcc-13/porting_to.html +++ b/htdocs/gcc-13/porting_to.html @@ -24,5 +24,23 @@ porting to GCC 13. This document is an effort to identify common issues and provide solutions. Let us know if you have suggestions for improvements!

+

C++ language issues

+ +

Header dependency changes

+

Some C++ Standard Library headers have been changed to no longer include +other headers that were being used internally by the library. +As such, C++ programs that used standard library components without +including the right headers will no longer compile. +

+

+The following headers are used less widely in libstdc++ and may need to +be included explicitly when compiled with GCC 13: +

+
    +
  • <cstdint> + (for std::int8_t, std::int32_t etc.) +
  • +
+ ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-13/porting_to.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) hooks/post-receive -- gcc-wwwdocs