introspection: use 'i' prefix for signed type_names

This brings the values into line with the constants in std
This commit is contained in:
Danny Robson 2018-08-01 13:08:13 +10:00
parent 5d8ee88772
commit cd8a12ed28

View File

@ -56,10 +56,10 @@ namespace util {
CLANG_WORKAROUND(uint32_t, u32, "u32")
CLANG_WORKAROUND(uint64_t, u64, "u64")
CLANG_WORKAROUND( int8_t, s08, "s08")
CLANG_WORKAROUND(int16_t, s16, "s16")
CLANG_WORKAROUND(int32_t, s32, "s32")
CLANG_WORKAROUND(int64_t, s64, "s64")
CLANG_WORKAROUND( int8_t, s08, "i08")
CLANG_WORKAROUND(int16_t, s16, "i16")
CLANG_WORKAROUND(int32_t, s32, "i32")
CLANG_WORKAROUND(int64_t, s64, "i64")
CLANG_WORKAROUND(float, f32, "f32")
CLANG_WORKAROUND(double, f64, "f64")