Remove const from the key type of APE::ItemListMap.

A key type must be copy-assignable, and some compilers check it strictly.
This commit is contained in:
Tsuda Kageyu 2015-11-18 17:27:25 +09:00
parent 1ff30e55da
commit 0b2a3ce400

View File

@ -49,7 +49,7 @@ namespace TagLib {
*
* \see APE::Tag::itemListMap()
*/
typedef Map<const String, Item> ItemListMap;
typedef Map<String, Item> ItemListMap;
//! An APE tag implementation