mirror of
https://github.com/taglib/taglib.git
synced 2026-08-14 06:17:00 -04:00
Replace RefCounter with shared_ptr (#1100)
* clang-tidy: replace RefCounter with shared_ptr The latter is C++11. Found with clang-analyzer-webkit.NoUncountedMemberChecker Signed-off-by: Rosen Penev <[email protected]> * remove trefcounter It is now unused. Signed-off-by: Rosen Penev <[email protected]> --------- Signed-off-by: Rosen Penev <[email protected]>
This commit is contained in:
+1
-1
@@ -304,7 +304,7 @@ namespace TagLib {
|
||||
void parse(IOStream *stream, bool readAudioProperties, AudioProperties::ReadStyle audioPropertiesStyle);
|
||||
|
||||
class FileRefPrivate;
|
||||
FileRefPrivate *d;
|
||||
std::shared_ptr<FileRefPrivate> d;
|
||||
};
|
||||
|
||||
} // namespace TagLib
|
||||
|
||||
Reference in New Issue
Block a user