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
+1 -3
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)