From 1792d9a23f9df52ea6363cc07040ca9c2130c9da Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Mon, 3 Mar 2014 08:54:38 +0100 Subject: [PATCH] [MathLib] Vector3 Removed unused code. Method does not make use of any part of Vector3. If the functionality is needed it can be impl. outside of this class. --- MathLib/Vector3.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/MathLib/Vector3.h b/MathLib/Vector3.h index 94f980f9866..59142bdad33 100644 --- a/MathLib/Vector3.h +++ b/MathLib/Vector3.h @@ -115,10 +115,6 @@ public: return TemplateVector3(this->x[0] * pR, this->x[1] * pR, this->x[2] * pR); } - friend TemplateVector3 operator*(double pR, const TemplateVector3 & pV) - { - return TemplateVector3 ( pV[0] * pR, pV[1] * pR, pV[2] * pR ); - } TemplateVector3& operator*=(double pR) { -- GitLab