diff --git a/example/storage_tank.cpp b/example/storage_tank.cpp index ec74e3e4..27e5dea6 100644 --- a/example/storage_tank.cpp +++ b/example/storage_tank.cpp @@ -52,11 +52,11 @@ inline constexpr auto g = 1 * si::standard_gravity; inline constexpr auto air_density = isq::mass_density(1.225 * (kg / m3)); class StorageTank { - quantity base_; + quantity base_; quantity height_; quantity density_ = air_density; public: - constexpr StorageTank(const quantity& base, const quantity& height) : + constexpr StorageTank(const quantity& base, const quantity& height) : base_(base), height_(height) { }