mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
Fix compile error with Visual Studio 2012
The standard header stdbool.h is not available with old Visual Studio compilers
This commit is contained in:
parent
e0b290eb3d
commit
b4b89c2ab0
2 changed files with 22 additions and 4 deletions
|
@ -31,9 +31,18 @@
|
|||
*/
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h> // memcpy
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER <= 1700)
|
||||
/* for vs2012/11.0/1700 and earlier Visual Studio compilers */
|
||||
# define bool int
|
||||
# define false 0
|
||||
# define true 1
|
||||
#else
|
||||
# include <stdbool.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef _WIN32
|
||||
#include "winconfig.h"
|
||||
#else
|
||||
|
|
|
@ -41,11 +41,20 @@
|
|||
#include <stdint.h>
|
||||
#include <stddef.h> /* ptrdiff_t */
|
||||
#include <ctype.h>
|
||||
#ifndef __cplusplus
|
||||
# include <stdbool.h>
|
||||
#endif
|
||||
#include <limits.h>
|
||||
|
||||
#if ! defined(__cplusplus)
|
||||
# if defined(_MSC_VER) && (_MSC_VER <= 1700)
|
||||
/* for vs2012/11.0/1700 and earlier Visual Studio compilers */
|
||||
# define bool int
|
||||
# define false 0
|
||||
# define true 1
|
||||
# else
|
||||
# include <stdbool.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
#include "expat.h"
|
||||
#include "chardata.h"
|
||||
#include "internal.h" /* for UNUSED_P only */
|
||||
|
|
Loading…
Add table
Reference in a new issue