From: Sam James Date: Wed, 1 Jan 2025 17:16:17 +0000 (+0000) Subject: doc: cpp: fix version test example syntax X-Git-Tag: basepoints/gcc-16~3068 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea25066d8a9106bb015720328d4645cd1ddd2bab;p=thirdparty%2Fgcc.git doc: cpp: fix version test example syntax gcc/ChangeLog: * doc/cpp.texi (Common Predefined Macros): Fix syntax. --- diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi index 970c0a393971..4b0f2d9bb857 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