https://gcc.gnu.org/g:91b524aa80e2ce22c4613f6bea625a72d1f5f4ed

commit r14-11195-g91b524aa80e2ce22c4613f6bea625a72d1f5f4ed
Author: Sam James <s...@gentoo.org>
Date:   Wed Jan 1 17:16:17 2025 +0000

    doc: cpp: fix version test example syntax
    
    gcc/ChangeLog:
    
            * doc/cpp.texi (Common Predefined Macros): Fix syntax.

Diff:
---
 gcc/doc/cpp.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi
index 3de6e7aa7378..a2f982c510af 100644
--- a/gcc/doc/cpp.texi
+++ b/gcc/doc/cpp.texi
@@ -1971,7 +1971,7 @@ like this:
 #if __GNUC__ > 3 || \
     (__GNUC__ == 3 && (__GNUC_MINOR__ > 2 || \
                        (__GNUC_MINOR__ == 2 && \
-                        __GNUC_PATCHLEVEL__ > 0))
+                        __GNUC_PATCHLEVEL__ > 0)))
 @end smallexample
 
 @noindent

Reply via email to