From: Jonathan Wakely Date: Wed, 11 Jun 2025 12:29:30 +0000 (+0100) Subject: libstdc++: Remove redundant parentheses in preprocessor condition X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2202c6a9769ec3f9e0a066355eaae8b4a2d98c0c;p=thirdparty%2Fgcc.git 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 --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 -#include +#if __cplusplus >= 201103L +# include +# include #endif #endif