| 28 | HeaderSerVisitor(Sink & sink) : m_sink(sink) {} |
| 29 | |
| 30 | void operator()(uint64_t v, char const * /* name */ = nullptr) { WriteToSink(m_sink, v); } |
| 31 | |
| 32 | template <typename R> |
| 33 | void operator()(R & r, char const * /* name */ = nullptr) |
nothing calls this directly
no test coverage detected