123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef BOOST_NUMERIC_ODEINT_UTIL_IS_PAIR_HPP_INCLUDED
- #define BOOST_NUMERIC_ODEINT_UTIL_IS_PAIR_HPP_INCLUDED
- #include <type_traits>
- namespace boost {
- namespace numeric {
- namespace odeint {
- template< class T >
- struct is_pair : public std::integral_constant<bool, false>
- {
- };
- template< class T1 , class T2 >
- struct is_pair< std::pair< T1 , T2 > > : public std::integral_constant<bool, true>
- {
- };
- }
- }
- }
- #endif
|