mirror of
https://github.com/taglib/taglib.git
synced 2026-05-26 05:28:40 -04:00
Completely remove StripAll from the API
I'd imagined it being useful for calls to `strip()`, but it's not actually used there since that's an OR-ed together set of flags representing which tags to strip.
This commit is contained in:
@@ -244,7 +244,7 @@ bool MPEG::File::save(int tags, StripTags strip, ID3v2::Version version, Duplica
|
||||
|
||||
// Remove all the tags not going to be saved.
|
||||
|
||||
if(strip == StripOthers || strip == StripAll)
|
||||
if(strip == StripOthers)
|
||||
File::strip(~tags, false);
|
||||
|
||||
if(ID3v2 & tags) {
|
||||
|
||||
Reference in New Issue
Block a user