Fix typo in TagReaderTagLib constructor and destructor

This commit is contained in:
Jonas Kvinge 2021-07-02 01:26:48 +02:00
parent a4b0c6f37d
commit 825c62c62b
1 changed files with 2 additions and 2 deletions

View File

@ -132,9 +132,9 @@ const char *kASF_OriginalYear_ID = "WM/OriginalReleaseYear";
} // namespace
TagReaderTagLib::TagReaderTaglib() : factory_(new TagLibFileRefFactory) {}
TagReaderTagLib::TagReaderTagLib() : factory_(new TagLibFileRefFactory) {}
TagReaderTagLib::~TagReaderTaglib() {
TagReaderTagLib::~TagReaderTagLib() {
delete factory_;
}