| 324 | } |
| 325 | |
| 326 | void ByteVector::setUInt32(size_t writeIndex, unsigned value) { // 4 byte value |
| 327 | BVASSERT(writeIndex <= size() - 4); |
| 328 | sethtonl(&mStart[writeIndex],value); |
| 329 | } |
| 330 | |
| 331 | // Does not change size(). |
| 332 | void ByteVector::fill(ByteType byte, size_t start, size_t span) { |
nothing calls this directly
no test coverage detected