mirror of
https://github.com/boostorg/interval.git
synced 2026-01-19 16:22:19 +00:00
Also added a cmake test script. Fix error: use of overloaded operator '!=' is ambiguous clang-10 on C++20 disabled clang-10: https://github.com/llvm/llvm-project/issues/43110
27 lines
818 B
C++
27 lines
818 B
C++
/* Boost test/cmp_header.hpp header file
|
|
*
|
|
* Copyright 2003 Guillaume Melquiond
|
|
*
|
|
* 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 <boost/numeric/interval/interval.hpp>
|
|
#include <boost/numeric/interval/checking.hpp>
|
|
#include <boost/numeric/interval/compare.hpp>
|
|
#include <boost/numeric/interval/policies.hpp>
|
|
#include <boost/core/lightweight_test.hpp>
|
|
#include "bugs.hpp"
|
|
|
|
struct empty_class {};
|
|
|
|
typedef boost::numeric::interval_lib::policies
|
|
<empty_class, boost::numeric::interval_lib::checking_base<int> >
|
|
my_policies;
|
|
|
|
typedef boost::numeric::interval<int, my_policies> I;
|
|
|
|
#define BOOST_C_EXN(e) \
|
|
BOOST_TEST_THROWS((void)(e), boost::numeric::interval_lib::comparison_error)
|