#ifndef BOOST_RATIO_DETAIL_IS_RATIO_HPP #define BOOST_RATIO_DETAIL_IS_RATIO_HPP // Copyright 2023 Peter Dimov // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include #include namespace boost { namespace ratio_detail { template struct is_ratio: std::false_type { }; template struct is_ratio< boost::ratio >: std::true_type { }; } // namespace ratio_detail } // namespace boost #endif // BOOST_RATIO_DETAIL_IS_RATIO_HPP