From 96e7eb52acbfddf5beae4ecc56f23396155fe1d1 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Fri, 1 Mar 2019 12:06:17 +0100 Subject: [PATCH] Fixed build --- glm/fwd.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glm/fwd.hpp b/glm/fwd.hpp index 41a3bee5..474d44f7 100644 --- a/glm/fwd.hpp +++ b/glm/fwd.hpp @@ -15,9 +15,9 @@ namespace glm typedef std::uint32_t uint32; typedef std::uint64_t uint64; #else - typedef char int8; - typedef short int16; - typedef int int32; + typedef signed char int8; + typedef signed short int16; + typedef signed int int32; typedef detail::int64 int64; typedef unsigned char uint8;