| 169 | |
| 170 | template <typename Arg> |
| 171 | char* decode(std::ostream& os, char* b, Arg* /*dummy*/) |
| 172 | { |
| 173 | Arg arg = *reinterpret_cast<Arg*>(b); |
| 174 | os << arg; |
| 175 | return b + sizeof(Arg); |
| 176 | } |
| 177 | |
| 178 | template <> |
| 179 | char* decode(std::ostream& os, char* b, VDebug::string_literal_t* /*dummy*/) |