| 119 | } |
| 120 | |
| 121 | template <typename T> |
| 122 | inline void write(std::ostringstream &os, const T &value) |
| 123 | { |
| 124 | os.write(reinterpret_cast<const char *>(&value), sizeof(T)); |
| 125 | } |
| 126 | |
| 127 | inline void write(std::ostringstream &os, const std::string &value) |
no test coverage detected