mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
remove out of line declaration (#1137)
Seems to have been an oversight at some point. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
37ba5a5cc1
commit
d42e8ed3fe
@ -37,17 +37,15 @@ using namespace TagLib;
|
||||
class ByteVectorStream::ByteVectorStreamPrivate
|
||||
{
|
||||
public:
|
||||
ByteVectorStreamPrivate(const ByteVector &data);
|
||||
ByteVectorStreamPrivate(const ByteVector &data) :
|
||||
data(data)
|
||||
{
|
||||
}
|
||||
|
||||
ByteVector data;
|
||||
offset_t position { 0 };
|
||||
};
|
||||
|
||||
ByteVectorStream::ByteVectorStreamPrivate::ByteVectorStreamPrivate(const ByteVector &data) :
|
||||
data(data)
|
||||
{
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// public members
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user