Simplify an ifdef
We don't need to check both platform and compiler at the same time, checking the compiler is enough here.
This commit is contained in:
parent
e55d777d17
commit
aec2ed30cd
@ -58,7 +58,7 @@
|
||||
|
||||
WELSVP_NAMESPACE_BEGIN
|
||||
|
||||
#if ( defined(_WIN32) || defined(_WIN32) ) && defined(_MSC_VER)
|
||||
#if defined(_MSC_VER)
|
||||
|
||||
typedef char int8_t ;
|
||||
typedef unsigned char uint8_t ;
|
||||
|
Loading…
x
Reference in New Issue
Block a user