123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef BOOST_NUMERIC_ODEINT_UTIL_IS_PAIR_HPP_INCLUDED
- #define BOOST_NUMERIC_ODEINT_UTIL_IS_PAIR_HPP_INCLUDED
- #include <boost/mpl/bool.hpp>
- #include <utility>
- namespace boost {
- namespace numeric {
- namespace odeint {
- template< class T >
- struct is_pair : public boost::mpl::false_
- {
- };
- template< class T1 , class T2 >
- struct is_pair< std::pair< T1 , T2 > > : public boost::mpl::true_
- {
- };
- }
- }
- }
- #endif
|