[gcc r16-1427] libstdc++: Remove redundant parentheses in preprocessor condition
Jonathan Wakely
redi@gcc.gnu.org
Wed Jun 11 21:39:15 GMT 2025
https://gcc.gnu.org/g:2202c6a9769ec3f9e0a066355eaae8b4a2d98c0c
commit r16-1427-g2202c6a9769ec3f9e0a066355eaae8b4a2d98c0c
Author: Jonathan Wakely <jwakely@redhat.com>
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
More information about the Libstdc++-cvs
mailing list