| //===----------------------------------------------------------------------===// |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| //===----------------------------------------------------------------------===// |
| // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, |
| // class Alloc = allocator<Value>> |
| // size_type count(const key_type& k) const; |
| #include "min_allocator.h" |
| typedef std::unordered_set<int> C; |
| const C c(std::begin(a), std::end(a)); |
| assert(c.count(30) == 1); |
| assert(c.count(50) == 1); |
| typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, min_allocator<int>> C; |
| const C c(std::begin(a), std::end(a)); |
| assert(c.count(30) == 1); |
| assert(c.count(50) == 1); |