diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-20 23:15:54 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-20 23:15:54 +0200 |
| commit | 6691e2011a79adb2b65262cc1301995f30914676 (patch) | |
| tree | b2d5eb898594169f0a5b2300945e810c67a066a9 /src | |
| parent | f447a804d6e13306a0b959c7ee445c8a84fe1a84 (diff) | |
Fix build on some (older?) GCCs.
Diffstat (limited to 'src')
| -rw-r--r-- | src/exceptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/exceptions.h b/src/exceptions.h index b58d0240..7ed729dd 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -230,6 +230,7 @@ class StartCompressionError : public std::runtime_error { public: explicit StartCompressionError (boost::optional<int> code = boost::optional<int>()); + ~StartCompressionError () throw () {} boost::optional<int> code () const { return _code; |
