diff --git a/test/unit_test/static/quantity_test.cpp b/test/unit_test/static/quantity_test.cpp index 2e789793..61e77dbf 100644 --- a/test/unit_test/static/quantity_test.cpp +++ b/test/unit_test/static/quantity_test.cpp @@ -36,7 +36,7 @@ namespace { T value_{}; public: my_value() = default; - constexpr my_value(T v) : value_{std::move(v)} {} + constexpr my_value(T v) : value_(std::move(v)) {} constexpr my_value& operator+=(const my_value& other) { value_ += other.value_; return *this; } constexpr my_value& operator-=(const my_value& other) { value_ -= other.value_; return *this; } constexpr my_value& operator*=(const my_value& other) { value_ *= other.value_; return *this; }