]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
doc: cpp: fix version test example syntax
authorSam James <sam@gentoo.org>
Wed, 1 Jan 2025 17:16:17 +0000 (17:16 +0000)
committerSam James <sam@gentoo.org>
Fri, 10 Jan 2025 02:06:29 +0000 (02:06 +0000)
gcc/ChangeLog:

* doc/cpp.texi (Common Predefined Macros): Fix syntax.

gcc/doc/cpp.texi

index 3de6e7aa7378e0bc317eaea2053856b6b6c6ff94..a2f982c510af862ef37e37e0858732b6f5bf1426 100644 (file)
@@ -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