From 6150aaaa773586adb4bde31ae2a92265db8270c2 Mon Sep 17 00:00:00 2001 From: intolerantape Date: Wed, 29 Sep 2021 20:34:59 -0700 Subject: [PATCH] Update Vector4.h Added some missing explicit tags to Vector4 constructors to match the pattern established by other Vector types. --- Source/Engine/Core/Math/Vector4.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Engine/Core/Math/Vector4.h b/Source/Engine/Core/Math/Vector4.h index 1c0926bc3..3e24ae971 100644 --- a/Source/Engine/Core/Math/Vector4.h +++ b/Source/Engine/Core/Math/Vector4.h @@ -125,19 +125,19 @@ public: // @param xy X and Y values in the vector // @param z Z component value // @param w W component value - Vector4(const Vector2& xy, float z, float w); + explicit Vector4(const Vector2& xy, float z, float w); // Init // @param xy X and Y values in the vector // @param zw Z and W values in the vector // @param z Z component value // @param w W component value - Vector4(const Vector2& xy, const Vector2& zw); + explicit Vector4(const Vector2& xy, const Vector2& zw); // Init // @param xyz X, Y and Z values in the vector // @param w W component value - Vector4(const Vector3& xyz, float w); + explicit Vector4(const Vector3& xyz, float w); // Init // @param xy X and Y values in the vector