mirror of
https://github.com/taglib/taglib.git
synced 2025-07-25 08:24:29 -04: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