summaryrefslogtreecommitdiffhomepage
path: root/serialize/packbits-write.cpp
blob: 0b4fb4f11a4ef3076608f67222fe750174efe1ef (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);

} // namespace floormat::detail_Pack_output