fs/io/GunzipReader: add noexcept

This commit is contained in:
Max Kellermann 2019-04-26 14:44:53 +02:00
parent 392b783c9e
commit bf9f690c70

View File

@ -44,7 +44,7 @@ public:
*/ */
explicit GunzipReader(Reader &_next); explicit GunzipReader(Reader &_next);
~GunzipReader() { ~GunzipReader() noexcept {
inflateEnd(&z); inflateEnd(&z);
} }