mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 11:06:50 +01:00
fixed warnings and inconsistencies
This commit is contained in:
@@ -176,7 +176,7 @@ protected:
|
||||
};
|
||||
|
||||
|
||||
class Foundation_API DeflatingInputStream: public DeflatingIOS, public std::istream
|
||||
class Foundation_API DeflatingInputStream: public std::istream, public DeflatingIOS
|
||||
/// This stream compresses all data passing through it
|
||||
/// using zlib's deflate algorithm.
|
||||
{
|
||||
|
||||
@@ -173,7 +173,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class Foundation_API InflatingInputStream: public InflatingIOS, public std::istream
|
||||
class Foundation_API InflatingInputStream: public std::istream, public InflatingIOS
|
||||
/// This stream decompresses all data passing through it
|
||||
/// using zlib's inflate algorithm.
|
||||
/// Example:
|
||||
|
||||
Reference in New Issue
Block a user