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.
This commit is contained in:
parent
a24fd5e120
commit
b468ed3c0b
@ -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 ;
|
||||
|
Loading…
Reference in New Issue
Block a user