#pragma once #include "../unit.hpp" namespace kel { namespace unit_type { struct second{ static constexpr std::string_view name = "second"; static constexpr std::string_view short_name = "s"; }; } template using second = unit>; }