#ifndef BOOST_RATIO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP #define BOOST_RATIO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP // Copyright 2023 Peter Dimov // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include namespace boost { namespace ratio_detail { template struct is_evenly_divisible_by_: std::integral_constant { }; template struct is_evenly_divisible_by_: std::false_type { }; template struct is_evenly_divisible_by: std::integral_constant::value && is_evenly_divisible_by_::value> { }; } // namespace ratio_detail } // namespace boost #endif // BOOST_RATIO_DETAIL_IS_EVENLY_DIVISIBLE_BY_HPP