/* @file ratio_concept.hpp */ #pragma once #include namespace xo { namespace unit { template concept ratio_concept = (std::is_signed_v && std::is_signed_v); } /*namespace unit*/ } /*namespace xo*/