diff options
| author | ljfa-ag <ljfa-ag@web.de> | 2015-09-15 23:37:49 +0200 |
|---|---|---|
| committer | ljfa-ag <ljfa-ag@web.de> | 2015-09-15 23:37:49 +0200 |
| commit | 93a4f406d0b827026d26703c4623b1b846f65ca4 (patch) | |
| tree | 0d3a2b287696223de8f8b919bb2f8cf87b4a960f /src/io/izlibstream.cpp | |
| parent | ef10a4f34a3f10bc1fc7ee0b7b1be6f37d286741 (diff) | |
| download | Project-Tick-93a4f406d0b827026d26703c4623b1b846f65ca4.tar.gz Project-Tick-93a4f406d0b827026d26703c4623b1b846f65ca4.zip | |
Fix base constructor calls of i/ostream
Add missing noexcept
Diffstat (limited to 'src/io/izlibstream.cpp')
| -rw-r--r-- | src/io/izlibstream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io/izlibstream.cpp b/src/io/izlibstream.cpp index db69e0e626..6b7a75189a 100644 --- a/src/io/izlibstream.cpp +++ b/src/io/izlibstream.cpp @@ -39,7 +39,7 @@ inflate_streambuf::inflate_streambuf(std::istream& input, size_t bufsize, int wi setg(end, end, end); } -inflate_streambuf::~inflate_streambuf() +inflate_streambuf::~inflate_streambuf() noexcept { inflateEnd(&zstr); } |
