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; }; /**