Fix usage examples' comments for std::multiset
This commit is contained in:
parent
963efb1f09
commit
b5128b1610
3 changed files with 5 additions and 5 deletions
|
@ -39,7 +39,7 @@ int main()
|
|||
|
||||
// create an array from std::multiset
|
||||
std::multiset<std::string> c_mset {"one", "two", "one", "four"};
|
||||
json j_mset(c_mset); // only one entry for "one" is used
|
||||
json j_mset(c_mset); // both entries for "one" are used
|
||||
|
||||
// create an array from std::unordered_multiset
|
||||
std::unordered_multiset<std::string> c_umset {"one", "two", "one", "four"};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue