diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/io/izlibstream.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/io/izlibstream.h b/include/io/izlibstream.h index d3c4faa14e..4c6d5def85 100644 --- a/include/io/izlibstream.h +++ b/include/io/izlibstream.h @@ -64,6 +64,11 @@ private: * This istream wraps another istream. The izlibstream will read compressed * data from the wrapped istream and inflate (decompress) it with zlib. * + * @note If you want to read more data from the wrapped istream after the end + * of the compressed data, then it must allow seeking. It is unavoidable for + * the izlibstream to consume more data after the compressed data. + * It will automatically attempt to seek the wrapped istream back to the point + * after the end of the compressed data. * @sa inflate_streambuf */ class izlibstream : public std::istream |
