remove out of line declaration (#1137)

Seems to have been an oversight at some point.

Signed-off-by: Rosen Penev <[email protected]>
This commit is contained in:
Rosen Penev
2023-09-08 13:41:41 +02:00
committed by GitHub
parent 37ba5a5cc1
commit d42e8ed3fe
+4 -6
View File
@@ -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
////////////////////////////////////////////////////////////////////////////////