From 96a0e7691a082e67d03df15dcabb880b91b6593a Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Mon, 24 Oct 2011 08:38:27 +0000 Subject: [PATCH] remove assignment from quaternion [[Imported from SVN: r8005]] --- dune/gfe/rotation.hh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/dune/gfe/rotation.hh b/dune/gfe/rotation.hh index 28fc70f3..31a65c6d 100644 --- a/dune/gfe/rotation.hh +++ b/dune/gfe/rotation.hh @@ -186,17 +186,6 @@ public: : Quaternion<T>(axis, angle) {} - /** \brief Assignment from a quaternion - \deprecated Using this is bad design. - */ - Rotation& operator=(const Quaternion<T>& other) { - (*this)[0] = other[0]; - (*this)[1] = other[1]; - (*this)[2] = other[2]; - (*this)[3] = other[3]; - return *this; - } - /** \brief Return the identity element */ static Rotation<3,T> identity() { // Default constructor creates an identity -- GitLab