aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-01-01 17:16:17 +0000
committerSam James <sam@gentoo.org>2025-01-01 17:55:50 +0000
commitea25066d8a9106bb015720328d4645cd1ddd2bab (patch)
treea9e13e98f947b91f12ca1239088aeaabd3b6b147
parentf8b559626025d2466c2780af6b62560dda468647 (diff)
downloadgcc-ea25066d8a9106bb015720328d4645cd1ddd2bab.zip
gcc-ea25066d8a9106bb015720328d4645cd1ddd2bab.tar.gz
gcc-ea25066d8a9106bb015720328d4645cd1ddd2bab.tar.bz2
doc: cpp: fix version test example syntax
gcc/ChangeLog: * doc/cpp.texi (Common Predefined Macros): Fix syntax.
-rw-r--r--gcc/doc/cpp.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi
index 970c0a3..4b0f2d9 100644
--- a/gcc/doc/cpp.texi
+++ b/gcc/doc/cpp.texi
@@ -1974,7 +1974,7 @@ like this:
#if __GNUC__ > 3 || \
(__GNUC__ == 3 && (__GNUC_MINOR__ > 2 || \
(__GNUC_MINOR__ == 2 && \
- __GNUC_PATCHLEVEL__ > 0))
+ __GNUC_PATCHLEVEL__ > 0)))
@end smallexample
@noindent