Skip to content

Commit 8168531

Browse files
committed
fix sample in flat_multiset
1 parent 7a572ea commit 8168531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/flat_set/flat_multiset/contains.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ return find(x) != end();
5151

5252
int main()
5353
{
54-
std::flat_set<int> fs = {3, 1, 4, 1};
54+
std::flat_multiset<int> fs = {3, 1, 4, 1};
5555

5656
// キー3の要素が含まれているか
5757
if (fs.contains(3)) {

0 commit comments

Comments
 (0)