mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 13:04:18 -04:00
Add an empty default implementation of IOStream::clear()
This commit is contained in:
@ -38,3 +38,8 @@ IOStream::IOStream()
|
||||
IOStream::~IOStream()
|
||||
{
|
||||
}
|
||||
|
||||
void IOStream::clear()
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -133,7 +133,7 @@ namespace TagLib {
|
||||
/*!
|
||||
* Reset the end-of-stream and error flags on the stream.
|
||||
*/
|
||||
virtual void clear() = 0;
|
||||
virtual void clear();
|
||||
|
||||
/*!
|
||||
* Returns the current offset within the stream.
|
||||
|
Reference in New Issue
Block a user