@@ -30,7 +30,7 @@ namespace Rml {
// Default constructor.
template <typename Type>
-Vector2<Type>::Vector2() : x{0}, y{0}
+Vector2<Type>::Vector2() : x{}, y{}
{}
// Initialising constructor.
@@ -32,7 +32,7 @@ namespace Rml {
-Vector3<Type>::Vector3() : x{0}, y{0}, z{0}
+Vector3<Type>::Vector3() : x{}, y{}, z{}
-Vector4<Type>::Vector4() : x{0}, y{0}, z{0}, w{0}
+Vector4<Type>::Vector4() : x{}, y{}, z{}, w{}