refactor(deps): Remove outdated reference to ms_stdint.h in cj5.h

This commit is contained in:
Julius Pfrommer 2024-09-15 13:02:26 +02:00 committed by Julius Pfrommer
parent 28306413e0
commit d6e2525863

14
deps/cj5.h vendored
View File

@ -76,18 +76,8 @@
# define CJ5_API
#endif
#if !defined(_MSC_VER) || _MSC_VER >= 1800
# include <stdint.h>
# include <stdbool.h>
#else
# include "ms_stdint.h"
# if !defined(__bool_true_false_are_defined)
# define bool unsigned char
# define true 1
# define false 0
# define __bool_true_false_are_defined
# endif
#endif
#include <stdint.h>
#include <stdbool.h>
typedef enum cj5_token_type {
CJ5_TOKEN_OBJECT = 0,