mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
fix(mpack): remove invalid bool definition
This causes build failures with gcc 15. Fixes #31723
This commit is contained in:
committed by
GitHub
parent
be01b361d8
commit
83479b95ab
@ -14,10 +14,6 @@ typedef mpack_sint32_t mpack_sintmax_t;
|
||||
typedef mpack_uint32_t mpack_uintmax_t;
|
||||
#endif
|
||||
|
||||
#ifndef bool
|
||||
# define bool unsigned
|
||||
#endif
|
||||
|
||||
MPACK_API mpack_token_t mpack_pack_nil(void) FUNUSED FPURE;
|
||||
MPACK_API mpack_token_t mpack_pack_boolean(unsigned v) FUNUSED FPURE;
|
||||
MPACK_API mpack_token_t mpack_pack_uint(mpack_uintmax_t v) FUNUSED FPURE;
|
||||
|
Reference in New Issue
Block a user