From 91b524aa80e2ce22c4613f6bea625a72d1f5f4ed Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 1 Jan 2025 17:16:17 +0000 Subject: [PATCH] doc: cpp: fix version test example syntax gcc/ChangeLog: * doc/cpp.texi (Common Predefined Macros): Fix syntax. --- gcc/doc/cpp.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi index 3de6e7aa7378..a2f982c510af 100644 --- a/gcc/doc/cpp.texi +++ b/gcc/doc/cpp.texi @@ -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 -- 2.47.2