From b468ed3c0b26cd4589bff2dd3d358cf84a1db6d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 24 Jan 2014 23:59:43 +0200 Subject: [PATCH] Unify the declaration of int8_t within the processing lib with the rest int8_t in general should to be defined as signed char, since there are actual envrionments where a plain 'char' is unsigned. This also reduces the differences between the typedef headers of the different sub-libraries. --- codec/processing/src/common/typedef.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec/processing/src/common/typedef.h b/codec/processing/src/common/typedef.h index 36764c7b..0a5aa8ea 100644 --- a/codec/processing/src/common/typedef.h +++ b/codec/processing/src/common/typedef.h @@ -60,7 +60,7 @@ WELSVP_NAMESPACE_BEGIN #if defined(_MSC_VER) -typedef char int8_t ; +typedef signed char int8_t ; typedef unsigned char uint8_t ; typedef short int16_t ; typedef unsigned short uint16_t ;