diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-08-10 22:31:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 22:31:53 +0200 |
commit | b4b22318a12a2753a7a8fded60d6850a57d2fa24 (patch) | |
tree | 041b6d91631ec4b968a534251c303b314a697fca | |
parent | ff1266aaaaba80f86ab9624eea8939d644d7e730 (diff) | |
parent | faccae47fca5cb671e5c900e128b7da5a9937534 (diff) | |
download | rneovim-b4b22318a12a2753a7a8fded60d6850a57d2fa24.tar.gz rneovim-b4b22318a12a2753a7a8fded60d6850a57d2fa24.tar.bz2 rneovim-b4b22318a12a2753a7a8fded60d6850a57d2fa24.zip |
Merge pull request #19704 from bfredl/ceci-nest-pas-un-bool
fix(mpack): make sure a `bool` always is a `bool`
-rw-r--r-- | src/mpack/mpack_core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mpack/mpack_core.h b/src/mpack/mpack_core.h index 1d601bc82d..336b778931 100644 --- a/src/mpack/mpack_core.h +++ b/src/mpack/mpack_core.h @@ -8,6 +8,7 @@ #include <assert.h> #include <limits.h> #include <stddef.h> +#include <stdbool.h> #ifdef __GNUC__ # define FPURE __attribute__((const)) |