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:
Rosen Penev 2023-09-08 04:41:41 -07:00 committed by GitHub
parent 37ba5a5cc1
commit d42e8ed3fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
////////////////////////////////////////////////////////////////////////////////