From 088142ff7860685303e0ee403c31529b0dc91da0 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 27 May 2016 18:56:15 +0200 Subject: [PATCH] fix OSX compile (nw) --- src/osd/osdcomm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osd/osdcomm.h b/src/osd/osdcomm.h index 723c61d133c..a376ee6b9bd 100644 --- a/src/osd/osdcomm.h +++ b/src/osd/osdcomm.h @@ -129,7 +129,7 @@ using FPTR = uintptr_t; #define EXTRACT_64LO(val) ((UINT32)(val)) // Highly useful template for compile-time knowledge of an array size -template constexpr inline std::size_t ARRAY_LENGTH(T (&)[N]) { return N;} +template constexpr inline size_t ARRAY_LENGTH(T (&)[N]) { return N;} /* Macros for normalizing data into big or little endian formats */