mirror of
https://github.com/google/brotli.git
synced 2024-11-09 21:50:07 +00:00
Fix MSVC stdbool inclde
This commit is contained in:
parent
0ef4edacab
commit
91cbcf9ed1
@ -24,7 +24,8 @@ typedef __int64 int64_t;
|
||||
#include <stdint.h>
|
||||
#endif /* defined(_MSC_VER) && (_MSC_VER < 1600) */
|
||||
|
||||
#if defined(__cplusplus) || __STDC_VERSION__ >= 199901L
|
||||
#if (!defined(_MSC_VER) || (_MSC_VER >= 1800)) && \
|
||||
(defined(__cplusplus) || __STDC_VERSION__ >= 199901L)
|
||||
#include <stdbool.h>
|
||||
#define BROTLI_BOOL bool
|
||||
#define BROTLI_TRUE true
|
||||
|
Loading…
Reference in New Issue
Block a user