From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 164B73858D32; Mon, 16 Jan 2023 10:49:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 164B73858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1673866192; bh=aUS+S9ZSFfssKkWGFHUQTfZJGJUhdVP1r4943UFO64c=; h=To:Subject:Date:From:From; b=UT8nfccKd7Amv6TS1LO/A2kBPMFkBv+ZNBxoKzDbw55G1HktUCChta1uB6AzTLlFV d50NTWCWS26hhI+4XfPs9rKvWGWeV0vNaW0tFNZMmVph1xKPUWTc8A2tzrPdvuOdc0 +sm6EKOsNkCQJYmoemtFR5hQkk2gcJE92DHjKzIg= To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. 9cd4fe743aa154894653d19a2352e3272e4c3426 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: cc002b7c948f5e75e6bdd84daef4d1e47fc6dc74 X-Git-Newrev: 9cd4fe743aa154894653d19a2352e3272e4c3426 Message-Id: <20230116104952.164B73858D32@sourceware.org> Date: Mon, 16 Jan 2023 10:49:52 +0000 (GMT) From: Jonathan Wakely List-Id: 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 9cd4fe743aa154894653d19a2352e3272e4c3426 (commit) from cc002b7c948f5e75e6bdd84daef4d1e47fc6dc74 (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 9cd4fe743aa154894653d19a2352e3272e4c3426 Author: Jonathan Wakely Date: Mon Jan 16 10:43:10 2023 +0000 Document new libstdc++ header dependency changes diff --git a/htdocs/gcc-13/porting_to.html b/htdocs/gcc-13/porting_to.html index 7a67c0b0..9a9a3147 100644 --- a/htdocs/gcc-13/porting_to.html +++ b/htdocs/gcc-13/porting_to.html @@ -34,12 +34,26 @@ 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: +be included explicitly when compiling with GCC 13:

    +
  • <string> + (for std::string, std::to_string, + std::stoi etc.) +
  • +
  • <system_error> + (for std::error_code, std::error_category, + std::system_error). +
  • <cstdint> (for std::int8_t, std::int32_t etc.)
  • +
  • <cstdio> + (for std::printf, std::fopen etc.) +
  • +
  • <cstdlib> + (for std::strtol, std::malloc etc.) +

Implicit move rules change

----------------------------------------------------------------------- Summary of changes: htdocs/gcc-13/porting_to.html | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) hooks/post-receive -- gcc-wwwdocs