From a6e7ba11df8a26722d2cd8ff8b0da4e53507852f Mon Sep 17 00:00:00 2001 From: Joshua Scott Date: Fri, 26 Oct 2018 14:53:40 +0100 Subject: [PATCH] pclass: Fix build errors on CI --- include/ki/util/BitTypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ki/util/BitTypes.h b/include/ki/util/BitTypes.h index 36db30d..cec212c 100644 --- a/include/ki/util/BitTypes.h +++ b/include/ki/util/BitTypes.h @@ -183,13 +183,13 @@ namespace ki * The number of bits a type will occupy if written to a BitStream. * This does not reflect the size of the type in memory. */ - static constexpr size_t value = sizeof(T) * 8; + static constexpr std::size_t value = sizeof(T) * 8; }; template struct bitsizeof> { - static constexpr size_t value = N; + static constexpr std::size_t value = N; }; /**