mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-02 14:11:12 +00:00
Merge pull request #569 from cseagle/master
don't try to override native C++ data type
This commit is contained in:
commit
ebd2c95340
|
@ -10,9 +10,11 @@ extern "C" {
|
|||
|
||||
#include <stdint.h>
|
||||
#ifdef _MSC_VER
|
||||
#ifndef __cplusplus
|
||||
typedef unsigned char bool;
|
||||
#define false 0
|
||||
#define true 1
|
||||
#endif
|
||||
#else
|
||||
#include <stdbool.h>
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue