mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 11:06:50 +01:00
- ifdef'd IPv6 tests
- fixed const-ness of stream() member functions to MemoryReader/Writer
This commit is contained in:
@@ -200,7 +200,12 @@ public:
|
||||
return _data;
|
||||
}
|
||||
|
||||
MemoryInputStream& stream() const
|
||||
const MemoryInputStream& stream() const
|
||||
{
|
||||
return _istr;
|
||||
}
|
||||
|
||||
MemoryInputStream& stream()
|
||||
{
|
||||
return _istr;
|
||||
}
|
||||
|
||||
@@ -215,7 +215,12 @@ public:
|
||||
return _data;
|
||||
}
|
||||
|
||||
MemoryOutputStream& stream() const
|
||||
const MemoryOutputStream& stream() const
|
||||
{
|
||||
return _ostr;
|
||||
}
|
||||
|
||||
MemoryOutputStream& stream()
|
||||
{
|
||||
return _ostr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user