| 206 | } |
| 207 | |
| 208 | void WriteBytes(const void *bytes, size_t len) |
| 209 | { |
| 210 | if (!IsValid(len)) |
| 211 | return; |
| 212 | |
| 213 | memcpy(&m_buffer_[m_cur_], bytes, len); |
| 214 | m_cur_ += len; |
| 215 | } |
| 216 | |
| 217 | template <class T> |
| 218 | void WriteLE(T value) |
no outgoing calls
no test coverage detected