| 2827 | } |
| 2828 | |
| 2829 | void StreamIndexedIO::StreamFile::seekp( size_t pos, std::ios_base::seekdir dir ) |
| 2830 | { |
| 2831 | /// Seek 'write' pointer to writable location |
| 2832 | m_stream->seekp( pos, dir ); |
| 2833 | |
| 2834 | /// Clear error flags because problem on GCC 3.3.4: |
| 2835 | /// When the file is a std::stringstream then the first seekp(0) will fail and inhibit following operations on the file. |
| 2836 | m_stream->clear(); |
| 2837 | } |
| 2838 | |
| 2839 | uint64_t StreamIndexedIO::StreamFile::tellg() |
| 2840 | { |
no test coverage detected