Pushed to wwwdocs.

---
 htdocs/gcc-15/porting_to.html | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/htdocs/gcc-15/porting_to.html b/htdocs/gcc-15/porting_to.html
index c446e309..2bc0d4e5 100644
--- a/htdocs/gcc-15/porting_to.html
+++ b/htdocs/gcc-15/porting_to.html
@@ -155,6 +155,17 @@ may need to be included explicitly when compiling with GCC 
15:
 </li>
 </ul>
 
+<h3 id="deprecated-headers">Deprecated headers</h3>
+<p>
+Some C++ Standard Library headers now produce deprecation warnings when
+included. The warnings suggest how to adjust the code to avoid the warning,
+for example all uses of <code>&lt;cstdbool&gt;</code> and
+<code>&lt;cstdalign&gt;</code> can simply be removed,
+because they serve no purpose and are unnecessary in C++ programs.
+Most uses of <code>&lt;ccomplex&gt;</code> can be adjusted to use
+<code>&lt;complex&gt;</code> instead, and uses of <code>&lt;ctgmath&gt;</code>
+can use <code>&lt;cmath&gt;</code> and/or <code>&lt;complex&gt;</code>.
+</p>
 
 <!-- <h2 id="fortran">Fortran language issues</h2> -->
 
-- 
2.47.1

Reply via email to