From ce06a4b935e15c7fa4376c549572c8153cfcf02e Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Mon, 17 Oct 2016 22:41:58 +0200 Subject: [PATCH] Change fixed size data types --- src/configuration.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/configuration.h b/src/configuration.h index c14783d8..04cb0956 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -30,6 +30,7 @@ #include #include #include +#include #include "decimal.h" // Windows platform @@ -51,10 +52,9 @@ using luint = long unsigned int; using bodyindex = luint; using bodyindexpair = std::pair; -using int16 = signed short; -using int32 = signed int; -using uint16 = unsigned short; -using uint32 = unsigned int; +using int8 = int8_t; +using int16 = int16_t; +using int32 = int32_t; // ------------------- Enumerations ------------------- //