#pragma once #include namespace kel { template class unit_convert { static_assert(always_false, "Units can't be converted to each other"); }; template class unit_convert { static constexpr factor = static_cast(1); }; }