pclass: Fix build errors on CI

This commit is contained in:
Joshua Scott 2018-10-26 14:53:40 +01:00
parent 175d4dda77
commit a6e7ba11df
1 changed files with 2 additions and 2 deletions

View File

@ -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 <uint8_t N, bool Unsigned>
struct bitsizeof<BitInteger<N, Unsigned>>
{
static constexpr size_t value = N;
static constexpr std::size_t value = N;
};
/**