File indexing completed on 2025-01-18 09:29:46
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_CHRONO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP
0009 #define BOOST_CHRONO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP
0010
0011 #include <boost/ratio/detail/is_evenly_divisible_by.hpp>
0012
0013 namespace boost {
0014 namespace chrono {
0015 namespace chrono_detail {
0016
0017 template <class R1, class R2>
0018 struct is_evenly_divisible_by : public boost::ratio_detail::is_evenly_divisible_by<R1, R2>
0019 {};
0020
0021 }
0022 }
0023 }
0024
0025 #endif