From: Jonathan Wakely Date: Mon, 3 Jul 2023 18:33:18 +0000 (+0100) Subject: libstdc++: Fix synopsis test X-Git-Tag: basepoints/gcc-15~7865 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9f05e483984bf89fec7778aaa55ece8ba2a86bb;p=thirdparty%2Fgcc.git libstdc++: Fix synopsis test The header is only supported for the cxx11 ABI. The declarations of basic_syncbuf, basic_osyncstream, syncbuf and osyncstream were already correctly guarded by a check for _GLIBCXX_USE_CXX11_ABI, but the wsyncbuf and wosyncstream declarations were not. libstdc++-v3/ChangeLog: * testsuite/27_io/headers/iosfwd/synopsis.cc: Make wsyncbuf and wosyncstream depend on _GLIBCXX_USE_CXX11_ABI. --- diff --git a/libstdc++-v3/testsuite/27_io/headers/iosfwd/synopsis.cc b/libstdc++-v3/testsuite/27_io/headers/iosfwd/synopsis.cc index b6d3fa7a7190..12f47ae81331 100644 --- a/libstdc++-v3/testsuite/27_io/headers/iosfwd/synopsis.cc +++ b/libstdc++-v3/testsuite/27_io/headers/iosfwd/synopsis.cc @@ -115,7 +115,7 @@ _GLIBCXX_END_NAMESPACE_CXX11 typedef basic_ofstream wofstream; typedef basic_fstream wfstream; -#if __cplusplus >= 202002L +#if __cplusplus >= 202002L && _GLIBCXX_USE_CXX11_ABI typedef basic_syncbuf wsyncbuf; typedef basic_osyncstream wosyncstream; #endif