]> 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:07:13 +0000 (02:07 +0000)
gcc/ChangeLog:

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

gcc/doc/cpp.texi

index 90b2767e39a0ffe8dc815b3bdbe49efe933cb603..fe92522a7b7fbdc475f4c22ced47ce3e18b77f01 100644 (file)
@@ -1970,7 +1970,7 @@ like this:
 #if __GNUC__ > 3 || \
     (__GNUC__ == 3 && (__GNUC_MINOR__ > 2 || \
                        (__GNUC_MINOR__ == 2 && \
-                        __GNUC_PATCHLEVEL__ > 0))
+                        __GNUC_PATCHLEVEL__ > 0)))
 @end smallexample
 
 @noindent