summaryrefslogtreecommitdiff
path: root/c++
diff options
context:
space:
mode:
Diffstat (limited to 'c++')
-rw-r--r--c++/lbm_unit.h2
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>>;
}
+}