basic oatpp ints moved to c++11 fixed size ints as for default

This commit is contained in:
lganzzzo 2018-07-19 02:03:34 +03:00
parent db40b48faf
commit a04ddec3cb

View File

@ -43,21 +43,20 @@ if(!(EXP)) { \
typedef unsigned char v_char8;
typedef v_char8 *p_char8;
typedef long long v_int64;
typedef v_int64 * p_int64;
typedef unsigned long long v_word64;
typedef v_word64 * p_word64;
typedef int64_t v_int64;
typedef v_int64* p_int64;
typedef uint64_t v_word64;
typedef v_word64* p_word64;
typedef short int v_int16;
typedef v_int64 * p_int16;
typedef int16_t v_int16;
typedef v_int16* p_int16;
typedef uint16_t v_word16;
typedef v_word16* p_word16;
typedef unsigned short int v_word16;
typedef v_word16 * p_word16;
typedef int v_int32;
typedef v_int32 * p_int32;
typedef unsigned int v_word32;
typedef v_word32 * p_word32;
typedef int32_t v_int32;
typedef v_int32* p_int32;
typedef uint32_t v_word32;
typedef v_word32* p_word32;
typedef double v_float64;
typedef v_float64 * p_float64;