diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-03-20 16:59:01 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-03-20 16:59:01 +0100 |
commit | cc2487d7d340979e8c0f734ad33bd70d67994d42 (patch) | |
tree | 319875c64cb0e6ab7c0d708a46806d67a2e55403 /c++/lbm_unit.h | |
parent | ee13c90edae097679002adcae4dd726dd3f31164 (diff) |
Minor changes to namespace
Diffstat (limited to 'c++/lbm_unit.h')
-rw-r--r-- | c++/lbm_unit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/c++/lbm_unit.h b/c++/lbm_unit.h index 20c6e70..c4d09f6 100644 --- a/c++/lbm_unit.h +++ b/c++/lbm_unit.h @@ -5,6 +5,7 @@ #include <string_view> namespace kel { +namespace lbm { namespace lbm_type { struct meter { static constexpr std::string_view name = "meter_l"; @@ -29,3 +30,4 @@ using lbm_velocity = unit<S, unit_component<lbm_type::meter, 1>, unit_component< template<typename S> using lbm_acceleration = unit<S, unit_component<lbm_type::meter, 1>, unit_component<lbm_type::second, -2>>; } +} |