1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef BOOST_NUMERIC_ODEINT_UTIL_BIND_HPP_INCLUDED
- #define BOOST_NUMERIC_ODEINT_UTIL_BIND_HPP_INCLUDED
- #include <functional>
- namespace boost {
- namespace numeric {
- namespace odeint {
- namespace detail {
- using std::bind;
- using namespace std::placeholders;
- }
- }
- }
- }
- #endif
|