From: Sam James Date: Wed, 1 Jan 2025 17:16:17 +0000 (+0000) Subject: doc: cpp: fix version test example syntax X-Git-Tag: releases/gcc-12.5.0~369 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36db43d30282521732736ba5da23c397fb51f1e0;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 90b2767e39a0..fe92522a7b7f 100644 --- a/gcc/doc/cpp.texi +++ b/gcc/doc/cpp.texi @@ -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