lib/zlib/GzipOutputStream: add `noexcept`
This commit is contained in:
parent
8722c51306
commit
ba2df05fb4
|
@ -23,7 +23,7 @@ GzipOutputStream::GzipOutputStream(OutputStream &_next)
|
|||
throw ZlibError(result);
|
||||
}
|
||||
|
||||
GzipOutputStream::~GzipOutputStream()
|
||||
GzipOutputStream::~GzipOutputStream() noexcept
|
||||
{
|
||||
deflateEnd(&z);
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ public:
|
|||
* Throws #ZlibError on error.
|
||||
*/
|
||||
explicit GzipOutputStream(OutputStream &_next);
|
||||
~GzipOutputStream();
|
||||
~GzipOutputStream() noexcept;
|
||||
|
||||
/**
|
||||
* Throws on error.
|
||||
|
|
Loading…
Reference in New Issue