Skip to content

Commit 08106d7

Browse files
committed
Indicate blank lines are part of the comment
1 parent 783604d commit 08106d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Include/pymacro.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
// defined, <sys/cdefs.h> disables C11 support and <assert.h> does not define
66
// the static_assert() macro.
77
// https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=255290
8-
8+
//
99
// macOS <= 10.10 doesn't define static_assert in assert.h at all despite
1010
// having C11 compiler support.
11-
11+
//
1212
// static_assert is defined in glibc from version 2.16. Compiler support for
1313
// the C11 _Static_assert keyword is in gcc >= 4.6.
14-
14+
//
1515
// MSVC makes static_assert a keyword, contrary to the C standard.
16-
16+
//
1717
// In C++ 11 static_assert is a keyword, redefining is undefined behaviour.
1818
#if !defined(static_assert) && !defined(_MSC_VER) \
1919
&& !(defined(__cplusplus) && __cplusplus >= 201103L)

0 commit comments

Comments
 (0)