summaryrefslogtreecommitdiff
path: root/src/time/second.h
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-08-25 10:10:51 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-08-25 10:10:51 +0200
commit488653602d0636a1fa5ef6e64cabb9b903dce42a (patch)
treeb5d4bbffdf21017777f4c4d994b7b41a02e8fa5d /src/time/second.h
parente3c73b2c8b33b43d53de6d2106b93a4343609e80 (diff)
Renamed src folder to c++
Diffstat (limited to 'src/time/second.h')
-rw-r--r--src/time/second.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/time/second.h b/src/time/second.h
deleted file mode 100644
index 6dca456..0000000
--- a/src/time/second.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#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<typename S>
-using second = unit<S,unit_component<unit_type::second,1>>;
-}