diff --git a/src/Math/Vector3.h b/src/Math/Vector3.h index a4d24fc56..040fe1f58 100644 --- a/src/Math/Vector3.h +++ b/src/Math/Vector3.h @@ -49,8 +49,11 @@ template class Vector3: public Vector<3, T> { a[0]*b[1]-a[1]*b[0]); } + /** @copydoc Vector::Vector() */ + inline constexpr Vector3() {} + /** @copydoc Vector::Vector(T) */ - inline constexpr explicit Vector3(T value = T()): Vector<3, T>(value, value, value) {} + inline constexpr explicit Vector3(T value): Vector<3, T>(value, value, value) {} /** @copydoc Vector::Vector(const Vector&) */ inline constexpr Vector3(const Vector<3, T>& other): Vector<3, T>(other) {}