mirror of
https://github.com/taglib/taglib.git
synced 2026-02-14 12:13:07 -05:00
Add an overload of ByteVector::replace() which takes chars.
Currently, this is only way of using ByteVector::replace().
This commit is contained in:
@ -134,7 +134,7 @@ public:
|
||||
if(index > -1) {
|
||||
data.resize(index);
|
||||
}
|
||||
data.replace((char) 0xff, ' ');
|
||||
data.replace('\xff', ' ');
|
||||
value = data;
|
||||
return count;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user