From 08106d79788005eee02574639b5f64182ce13627 Mon Sep 17 00:00:00 2001 From: Joshua Root Date: Mon, 7 Nov 2022 22:53:47 +1100 Subject: [PATCH] Indicate blank lines are part of the comment --- Include/pymacro.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Include/pymacro.h b/Include/pymacro.h index 940ce0e5dc5fea..e1c230ce874a0a 100644 --- a/Include/pymacro.h +++ b/Include/pymacro.h @@ -5,15 +5,15 @@ // defined, disables C11 support and does not define // the static_assert() macro. // https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=255290 - +// // macOS <= 10.10 doesn't define static_assert in assert.h at all despite // having C11 compiler support. - +// // static_assert is defined in glibc from version 2.16. Compiler support for // the C11 _Static_assert keyword is in gcc >= 4.6. - +// // MSVC makes static_assert a keyword, contrary to the C standard. - +// // In C++ 11 static_assert is a keyword, redefining is undefined behaviour. #if !defined(static_assert) && !defined(_MSC_VER) \ && !(defined(__cplusplus) && __cplusplus >= 201103L)