From 1de6e6efe636db5f4bf5ad7028c0049d4dbc0063 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 17 Dec 2016 13:30:12 -0600 Subject: [PATCH] Fix types.hpp issues --- src/ox/std/types.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ox/std/types.hpp b/src/ox/std/types.hpp index 83fcf4c91..bc4a2607e 100644 --- a/src/ox/std/types.hpp +++ b/src/ox/std/types.hpp @@ -14,12 +14,12 @@ typedef unsigned short uint16_t; typedef int int32_t; typedef unsigned int uint32_t; typedef unsigned uint_t; -#ifdef _MSC_VER -typedef long int64_t; -typedef unsigned long uint64_t; -#else +#if defined(_MSC_VER) || defined(__APPLE__) typedef long long int64_t; typedef unsigned long long uint64_t; +#else +typedef long int64_t; +typedef unsigned long uint64_t; #endif namespace ox {