Foundation: fixed exceptions handling in zlib-output-streams constructors

This commit is contained in:
vm2mv
2016-11-21 16:43:27 +03:00
parent 45642a3d4f
commit 57f77bc622
2 changed files with 2 additions and 2 deletions

View File

@@ -139,7 +139,7 @@ protected:
};
class Foundation_API DeflatingOutputStream: public DeflatingIOS, public std::ostream
class Foundation_API DeflatingOutputStream: public std::ostream, public DeflatingIOS
/// This stream compresses all data passing through it
/// using zlib's deflate algorithm.
/// After all data has been written to the stream, close()

View File

@@ -143,7 +143,7 @@ protected:
};
class Foundation_API InflatingOutputStream: public InflatingIOS, public std::ostream
class Foundation_API InflatingOutputStream: public std::ostream, public InflatingIOS
/// This stream decompresses all data passing through it
/// using zlib's inflate algorithm.
///