blob: efdf16024d4d89e493dc00fed4eec241b752664f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "packbits-write.hpp"
namespace floormat::detail_Pack_output {
using u32 = uint32_t;
using u8 = uint8_t;
template u32 write_(output<u32, 32>, output_field<u32, 1>);
static_assert(output<u32, 32>::next<1>::Capacity == 31);
static_assert(output<u32, 32>::next<1>::next<2>::Capacity == 29);
} // namespace floormat::detail_Pack_output
|