https://gcc.gnu.org/g:2202c6a9769ec3f9e0a066355eaae8b4a2d98c0c
commit r16-1427-g2202c6a9769ec3f9e0a066355eaae8b4a2d98c0c Author: Jonathan Wakely <[email protected]> Date: Wed Jun 11 13:29:30 2025 +0100 libstdc++: Remove redundant parentheses in preprocessor condition Also indent the group controlled by the condition. libstdc++-v3/ChangeLog: * libsupc++/exception: Remove redundant parentheses and adjust whitespace. Diff: --- libstdc++-v3/libsupc++/exception | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libstdc++-v3/libsupc++/exception b/libstdc++-v3/libsupc++/exception index 246c9b185638..8c3bb33c831b 100644 --- a/libstdc++-v3/libsupc++/exception +++ b/libstdc++-v3/libsupc++/exception @@ -164,9 +164,9 @@ _GLIBCXX_END_NAMESPACE_VERSION } // extern "C++" -#if (__cplusplus >= 201103L) -#include <bits/exception_ptr.h> -#include <bits/nested_exception.h> +#if __cplusplus >= 201103L +# include <bits/exception_ptr.h> +# include <bits/nested_exception.h> #endif #endif
