strbuffer: allow for duplicate properties

This commit is contained in:
Andrzej Rybczak
2015-02-12 16:00:56 +01:00
parent e5e61842c5
commit 9d90e0f7fb
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@@ -2,6 +2,7 @@ ncmpcpp-0.6.3 (????-??-??)
* Fix floating point exception when adding a specific number of random items.
* Passwords are no longer added to the input history.
* It is now possible to put more than one specific flag consecutively in formats.
ncmpcpp-0.6.2 (2014-12-13)

View File

@@ -88,7 +88,7 @@ template <typename CharT> class BasicBuffer
public:
typedef std::basic_string<CharT> StringType;
typedef std::set<Property> Properties;
typedef std::multiset<Property> Properties;
template <typename... Args>
BasicBuffer(Args... args)