From cd8a12ed28aa4731bca1b91802aba537a2d2502b Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 1 Aug 2018 13:08:13 +1000 Subject: [PATCH] introspection: use 'i' prefix for signed type_names This brings the values into line with the constants in std --- introspection.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/introspection.hpp b/introspection.hpp index f4897786..4311bc89 100644 --- a/introspection.hpp +++ b/introspection.hpp @@ -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")