1 //===----------------------------------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 // UNSUPPORTED: c++98, c++03 10 11 // <vector> 12 13 // Test that <vector> provides all of the arithmetic, enum, and pointer 14 // hash specializations. 15 16 #include <vector> 17 18 #include "poisoned_hash_helper.hpp" 19 #include "min_allocator.h" 20 21 int main(int, char**) { 22 test_library_hash_specializations_available(); 23 { 24 test_hash_enabled_for_type<std::vector<bool> >(); 25 test_hash_enabled_for_type<std::vector<bool, min_allocator<bool>>>(); 26 } 27 28 return 0; 29 } 30