33 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8 9// UNSUPPORTED: c++0310 11// <vector>12 13// Test that <vector> provides all of the arithmetic, enum, and pointer14// hash specializations.15 16#include <vector>17 18#include "poisoned_hash_helper.h"19#include "test_macros.h"20#include "min_allocator.h"21 22void test() {23 test_hash_enabled<std::vector<bool> >();24 test_hash_enabled<std::vector<bool, min_allocator<bool>>>();25}26 27int main(int, char**) {28 test_library_hash_specializations_available();29 test();30 31 return 0;32}33