diff options
author | 2016-05-27 18:56:15 +0200 | |
---|---|---|
committer | 2016-05-27 18:56:15 +0200 | |
commit | 088142ff7860685303e0ee403c31529b0dc91da0 (patch) | |
tree | ae8101017d5d7213bd1303e4d2ce8907d47c9cb6 | |
parent | 66cf70ac29f954ae0c47367e86b3d93aadabafb8 (diff) |
fix OSX compile (nw)
-rw-r--r-- | src/osd/osdcomm.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <typename T, size_t N> constexpr inline std::size_t ARRAY_LENGTH(T (&)[N]) { return N;} +template <typename T, size_t N> constexpr inline size_t ARRAY_LENGTH(T (&)[N]) { return N;} /* Macros for normalizing data into big or little endian formats */ |