From d2637b3693ba9215e1850e85c079da0bab719893 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Mon, 3 Mar 2014 08:03:43 +0100
Subject: [PATCH] [MathLib] Vector3: Removed unused code.

---
 MathLib/Vector3.h | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/MathLib/Vector3.h b/MathLib/Vector3.h
index 09a5c0dbdb4..94f980f9866 100644
--- a/MathLib/Vector3.h
+++ b/MathLib/Vector3.h
@@ -110,13 +110,6 @@ public:
 		TemplateVector3<T1> const& v,
 		TemplateVector3<T1> const& w);
 
-	/// Cross product with another vector
-	TemplateVector3 Cross( const TemplateVector3 & pV ) const
-	{ return *this * pV; }
-
-	friend TemplateVector3 Cross( const TemplateVector3 & p1, const TemplateVector3 & p2 )
-	{ return p1 * p2; }
-
 	TemplateVector3 operator*(double pR) const   // * a scalar
 	{
 		return TemplateVector3(this->x[0] * pR, this->x[1] * pR, this->x[2] * pR);
-- 
GitLab