From 2202c6a9769ec3f9e0a066355eaae8b4a2d98c0c Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Wed, 11 Jun 2025 13:29:30 +0100 Subject: [PATCH] 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. --- 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 -#include +#if __cplusplus >= 201103L +# include +# include #endif #endif -- 2.47.2