diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2015-02-12 16:00:56 +0100 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2015-02-12 18:38:27 +0100 |
commit | 9d90e0f7fb63978c8976893570b1cb839fbbe2a1 (patch) | |
tree | 585ae70ca86c3abeb7cd282c368ecccc19ac1d2f /src/strbuffer.h | |
parent | e5e61842c5bf610da1b4ceeb52e613dd911040b6 (diff) |
strbuffer: allow for duplicate properties
Diffstat (limited to 'src/strbuffer.h')
-rw-r--r-- | src/strbuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strbuffer.h b/src/strbuffer.h index 7a23932f..2cbe4395 100644 --- a/src/strbuffer.h +++ b/src/strbuffer.h @@ -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) |