ref: aec2ed30cd87b09ee9ddb587874921005ea22f5c
parent: e55d777d177821861edc39a3882ed8d6209c9f67
author: Martin Storsjö <[email protected]>
date: Thu Jan 23 13:47:45 EST 2014
Simplify an ifdef We don't need to check both platform and compiler at the same time, checking the compiler is enough here.
--- a/codec/processing/src/common/typedef.h
+++ b/codec/processing/src/common/typedef.h
@@ -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 ;