removed lifting of swap and ==/!= operations

This commit is contained in:
joaquintides
2023-10-22 20:16:05 +02:00
committed by GitHub
parent dbe93c765c
commit 42df4f2749
11 changed files with 1 additions and 35 deletions

View File

@ -855,8 +855,6 @@ namespace boost {
#endif
} // namespace unordered
using unordered::concurrent_flat_map;
} // namespace boost
#endif // BOOST_UNORDERED_CONCURRENT_FLAT_MAP_HPP

View File

@ -46,9 +46,6 @@ namespace boost {
} // namespace unordered
using boost::unordered::concurrent_flat_map;
using boost::unordered::swap;
using boost::unordered::operator==;
using boost::unordered::operator!=;
} // namespace boost
#endif // BOOST_UNORDERED_CONCURRENT_FLAT_MAP_HPP

View File

@ -711,8 +711,6 @@ namespace boost {
#endif
} // namespace unordered
using unordered::concurrent_flat_set;
} // namespace boost
#endif // BOOST_UNORDERED_CONCURRENT_FLAT_SET_HPP

View File

@ -47,9 +47,6 @@ namespace boost {
} // namespace unordered
using boost::unordered::concurrent_flat_set;
using boost::unordered::swap;
using boost::unordered::operator==;
using boost::unordered::operator!=;
} // namespace boost
#endif // BOOST_UNORDERED_CONCURRENT_FLAT_SET_FWD_HPP

View File

@ -39,10 +39,6 @@ namespace boost {
} // namespace unordered
using boost::unordered::unordered_flat_map;
using boost::unordered::swap;
using boost::unordered::operator==;
using boost::unordered::operator!=;
} // namespace boost
#endif

View File

@ -39,10 +39,6 @@ namespace boost {
} // namespace unordered
using boost::unordered::unordered_flat_set;
using boost::unordered::swap;
using boost::unordered::operator==;
using boost::unordered::operator!=;
} // namespace boost
#endif

View File

@ -60,11 +60,8 @@ namespace boost {
template <class Iter, class NodeType> struct insert_return_type_map;
} // namespace unordered
using boost::unordered::swap;
using boost::unordered::unordered_map;
using boost::unordered::unordered_multimap;
using boost::unordered::operator==;
using boost::unordered::operator!=;
} // namespace boost
#endif

View File

@ -39,10 +39,6 @@ namespace boost {
} // namespace unordered
using boost::unordered::unordered_node_map;
using boost::unordered::swap;
using boost::unordered::operator==;
using boost::unordered::operator!=;
} // namespace boost
#endif

View File

@ -39,10 +39,6 @@ namespace boost {
} // namespace unordered
using boost::unordered::unordered_node_set;
using boost::unordered::swap;
using boost::unordered::operator==;
using boost::unordered::operator!=;
} // namespace boost
#endif

View File

@ -58,11 +58,8 @@ namespace boost {
template <class Iter, class NodeType> struct insert_return_type_set;
} // namespace unordered
using boost::unordered::swap;
using boost::unordered::unordered_multiset;
using boost::unordered::unordered_set;
using boost::unordered::operator==;
using boost::unordered::operator!=;
} // namespace boost
#endif

View File

@ -1,6 +1,6 @@
// Copyright 2005-2009 Daniel James.
// Copyright 2022 Christian Mazakas.
// Copyright 2022-2023 Christian Mazakas.
// 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)
@ -496,8 +496,6 @@ template <class X> void equality_test(X& r)
test::check_return_type<bool>::equals(a == b);
test::check_return_type<bool>::equals(a != b);
test::check_return_type<bool>::equals(boost::operator==(a, b));
test::check_return_type<bool>::equals(boost::operator!=(a, b));
}
template <class X, class T> void unordered_unique_test(X& r, T const& t)