mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
clang-tidy: remove virtual from prot destructors
Found with cppcoreguidelines-virtual-class-destructor Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
208fc93aaa
commit
6abbe579a2
@ -158,7 +158,7 @@ namespace TagLib {
|
||||
/*!
|
||||
* Destroys the frame factory.
|
||||
*/
|
||||
virtual ~ItemFactory();
|
||||
~ItemFactory();
|
||||
|
||||
/*!
|
||||
* Returns mapping between atom names and handler types.
|
||||
|
@ -137,7 +137,7 @@ namespace TagLib {
|
||||
/*!
|
||||
* Destroys the frame factory.
|
||||
*/
|
||||
virtual ~FrameFactory();
|
||||
~FrameFactory();
|
||||
|
||||
/*!
|
||||
* This method checks for compliance to the current ID3v2 standard (2.4)
|
||||
|
Loading…
Reference in New Issue
Block a user