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:
Martin Storsjö 2014-01-23 18:47:45 +02:00
parent e55d777d17
commit aec2ed30cd

View File

@ -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 ;