mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 21:14:23 -04:00
Fix ByteVector to return correct iterators after detached.
This commit is contained in:
@ -319,6 +319,10 @@ public:
|
||||
*it4 = 'A';
|
||||
CPPUNIT_ASSERT_EQUAL('a', *it3);
|
||||
CPPUNIT_ASSERT_EQUAL('A', *it4);
|
||||
|
||||
ByteVector v3;
|
||||
v3 = ByteVector("taglib").mid(3);
|
||||
CPPUNIT_ASSERT_EQUAL('l', *v3.begin());
|
||||
}
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user