| 30 | |
| 31 | template <class T, MIGRAPHX_REQUIRES(not std::is_base_of<std::vector<std::uint8_t>, T>{})> |
| 32 | static void write_msgpack(std::ostream& os, const T& src) |
| 33 | { |
| 34 | msgpack::pack(os, src); |
| 35 | } |
| 36 | static void write_msgpack(std::ostream& os, const std::vector<std::uint8_t>& src) |
| 37 | { |
| 38 | const auto limit = std::numeric_limits<uint32_t>::max() - 1; |
no test coverage detected