diff --git a/test/unordered/deduction_tests.cpp b/test/unordered/deduction_tests.cpp index cffb0c1d..e808f656 100644 --- a/test/unordered/deduction_tests.cpp +++ b/test/unordered/deduction_tests.cpp @@ -3,11 +3,14 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +#include #include +#include #include #include #if BOOST_UNORDERED_TEMPLATE_DEDUCTION_GUIDES + struct hash_equals { template bool operator()(T const& x) const @@ -33,22 +36,15 @@ template struct test_allocator bool operator==(test_allocator const&) const { return true; } bool operator!=(test_allocator const&) const { return false; } }; -#endif -int main() +template