Skip to content

Commit 0f5fafd

Browse files
committed
osdep/compiler: fix typo in MP_ASSERT_UNREACHABLE
1 parent 83cedd1 commit 0f5fafd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osdep/compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#elif __has_builtin(__builtin_unreachable)
4747
#define MP_ASSERT_UNREACHABLE() __builtin_unreachable()
4848
#elif defined(_MSC_VER)
49-
#define MP_ASSERT_UNREACHABLE(msg) __assume(0)
49+
#define MP_ASSERT_UNREACHABLE() __assume(0)
5050
#elif __STDC_VERSION__ >= 202311L
5151
#include <stddef.h>
5252
#define MP_ASSERT_UNREACHABLE() unreachable()

0 commit comments

Comments
 (0)