mirror of
https://github.com/taglib/taglib.git
synced 2025-11-16 22:52:57 -05:00
Redefined smart pointer classes in safer way
This commit is contained in:
@ -205,7 +205,7 @@ namespace TagLib
|
||||
ByteVector render(const String &name, int kind = 0) const;
|
||||
|
||||
class AttributePrivate;
|
||||
TAGLIB_SHARED_PTR<AttributePrivate> d;
|
||||
RefCountPtr<AttributePrivate> d;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@ -231,7 +231,7 @@ namespace TagLib
|
||||
#endif
|
||||
private:
|
||||
class PicturePrivate;
|
||||
TAGLIB_SHARED_PTR<PicturePrivate> d;
|
||||
RefCountPtr<PicturePrivate> d;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user