mirror of
https://github.com/boostorg/odeint.git
synced 2026-01-19 04:22:12 +00:00
Define our own replacement for BOOST_MPL_HAS_XXX_TRAIT
This commit is contained in:
39
include/boost/numeric/odeint/tools/traits.hpp
Normal file
39
include/boost/numeric/odeint/tools/traits.hpp
Normal file
@@ -0,0 +1,39 @@
|
||||
// Copyright Matt Borland 2021 - 2023.
|
||||
// Use, modification and distribution are subject to 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)
|
||||
|
||||
#ifndef BOOST_NUMERIC_ODEINT_TOOLS_TRAITS
|
||||
#define BOOST_NUMERIC_ODEINT_TOOLS_TRAITS
|
||||
|
||||
#include <type_traits>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace odeint {
|
||||
namespace detail {
|
||||
|
||||
#define BOOST_NUMERIC_ODEINT_HAS_NAMED_TRAIT(trait, name) \
|
||||
template <typename T> \
|
||||
class trait \
|
||||
{ \
|
||||
private: \
|
||||
using yes = char; \
|
||||
struct no { char x[2]; }; \
|
||||
\
|
||||
template <typename U> \
|
||||
static yes test(typename U::name* = nullptr); \
|
||||
\
|
||||
template <typename U> \
|
||||
static no test(...); \
|
||||
\
|
||||
public: \
|
||||
static constexpr bool value = (sizeof(test<T>(0)) == sizeof(char)); \
|
||||
};
|
||||
|
||||
} //namespace detail
|
||||
} //namespace odeint
|
||||
} //namespace numeric
|
||||
} //namespace boost
|
||||
|
||||
#endif //BOOST_NUMERIC_ODEINT_TOOLS_TRAITS
|
||||
@@ -28,25 +28,19 @@
|
||||
#include <cstddef>
|
||||
#include <type_traits>
|
||||
#include <boost/range/config.hpp>
|
||||
#include <boost/mpl/has_xxx.hpp>
|
||||
#include <boost/numeric/odeint/tools/traits.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace odeint {
|
||||
|
||||
namespace detail {
|
||||
|
||||
|
||||
namespace range_detail
|
||||
{
|
||||
BOOST_MPL_HAS_XXX_TRAIT_DEF(iterator)
|
||||
BOOST_MPL_HAS_XXX_TRAIT_DEF(const_iterator)
|
||||
}
|
||||
|
||||
namespace detail
|
||||
{
|
||||
BOOST_NUMERIC_ODEINT_HAS_NAMED_TRAIT(has_iterator, iterator);
|
||||
BOOST_NUMERIC_ODEINT_HAS_NAMED_TRAIT(has_const_iterator, const_iterator);
|
||||
|
||||
template< typename Range >
|
||||
struct is_range : std::integral_constant<bool, (range_detail::has_iterator<Range>::value && range_detail::has_const_iterator<Range>::value)>
|
||||
struct is_range : std::integral_constant<bool, (has_iterator<Range>::value && has_const_iterator<Range>::value)>
|
||||
{
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user