Skip to content

Commit 95ffa4c

Browse files
committed
Remove redundant __STDC_VERSION__ check
1 parent 9d4d011 commit 95ffa4c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Include/pymacro.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@
5454
# define _Py_ALIGN_AS(V) alignas(V)
5555
# elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
5656
# define _Py_ALIGN_AS(V) _Alignas(V)
57-
# elif (defined(__GNUC__) || defined(__clang__)) \
58-
&& defined(__STDC_VERSION__) && __STDC_VERSION__ < 201112L
57+
# elif (defined(__GNUC__) || defined(__clang__))
5958
# define _Py_ALIGN_AS(V) __attribute__((aligned(V)))
6059
# elif defined(_MSC_VER)
6160
# define _Py_ALIGN_AS(V) __declspec(align(V))

0 commit comments

Comments
 (0)