mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-27 15:01:03 +08:00
Integrate cesanta/dev#1074 - Fix typedef bool for MSC
PUBLISHED_FROM=f52fe15edd617d9f1ba2aa4051c116e79671554d
This commit is contained in:
parent
b015e33ea5
commit
4e89eac8dd
@ -228,7 +228,7 @@
|
||||
#include <windows.h>
|
||||
#include <process.h>
|
||||
|
||||
#if _MSC_VER < 1700
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1700)
|
||||
typedef int bool;
|
||||
#else
|
||||
#include <stdbool.h>
|
||||
|
@ -50,7 +50,7 @@
|
||||
#include <windows.h>
|
||||
#include <process.h>
|
||||
|
||||
#if _MSC_VER < 1700
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1700)
|
||||
typedef int bool;
|
||||
#else
|
||||
#include <stdbool.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user