From cf18707c086a1b47600c924ae1f33a379d1d3fb2 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Tue, 23 May 2023 18:32:59 +0200 Subject: nix: Fixed dev install and moved folders --- src/time/second.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/time/second.h (limited to 'src/time') diff --git a/src/time/second.h b/src/time/second.h new file mode 100644 index 0000000..6dca456 --- /dev/null +++ b/src/time/second.h @@ -0,0 +1,15 @@ +#pragma once + +#include "../unit.h" + +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>; +} -- cgit v1.2.3