musikr: fix file_shim linking
This commit is contained in:
parent
c91286826f
commit
11ab27df97
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@
|
|||
|
||||
namespace taglib_shim
|
||||
{
|
||||
std::unique_ptr<TagLib::FileRef> new_FileRef(std::unique_ptr<TagLib::IOStream> stream) {
|
||||
return std::make_unique<TagLib::FileRef>(stream.release());
|
||||
std::unique_ptr<TagLib::FileRef> new_FileRef(TagLib::IOStream *stream) {
|
||||
return std::make_unique<TagLib::FileRef>(stream);
|
||||
}
|
||||
|
||||
TagLib::Ogg::Vorbis::File *File_asVorbis(TagLib::File *file)
|
||||
|
|
Loading…
Reference in a new issue