From 85a305d987dfe2c700cc051efe343c33144ee07e Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sat, 20 Mar 2021 19:36:41 +0200 Subject: [PATCH] Update Official.hpp --- module/Misc/Official.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/Misc/Official.hpp b/module/Misc/Official.hpp index 1796a385..e7b95ffa 100644 --- a/module/Misc/Official.hpp +++ b/module/Misc/Official.hpp @@ -21,7 +21,7 @@ struct LgVector : public Vector3 /* -------------------------------------------------------------------------------------------- * Copy constructor. */ - LgVector(const Vector3 & v) + explicit LgVector(const Vector3 & v) : Vector3(v) { } @@ -128,7 +128,7 @@ struct LgQuaternion : public Quaternion /* -------------------------------------------------------------------------------------------- * Copy constructor. */ - LgQuaternion(const Quaternion & q) + explicit LgQuaternion(const Quaternion & q) : Quaternion(q) { } @@ -245,7 +245,7 @@ struct LgRGB : public Color3 /* -------------------------------------------------------------------------------------------- * Copy constructor. */ - LgRGB(const Color3 & c) + explicit LgRGB(const Color3 & c) : Color3(c) { }