Add an empty default implementation of IOStream::clear()

This commit is contained in:
Lukáš Lalinský
2011-06-09 18:52:48 +02:00
parent e92ed0a830
commit 0ed2477dfa
2 changed files with 6 additions and 1 deletions

View File

@ -38,3 +38,8 @@ IOStream::IOStream()
IOStream::~IOStream()
{
}
void IOStream::clear()
{
}

View File

@ -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.