fix: default-initialize with zero()

This commit is contained in:
Johel Ernesto Guerrero Peña
2020-05-30 22:55:07 -04:00
parent 52db95109f
commit 636358fbf7

View File

@@ -46,7 +46,7 @@ public:
using rep = typename quantity_type::rep;
private:
quantity_type q_{};
quantity_type q_{quantity_type::zero()};
public:
quantity_point() = default;