No need to write the assignment as it comes by default

This commit is contained in:
Andreas Fabri 2019-01-28 09:39:46 +01:00
parent 5a236a5bf8
commit b7d4a081c7
1 changed files with 0 additions and 1 deletions

View File

@ -159,7 +159,6 @@ public:
Self operator*(const Self& rh) const { return Self(this->_wrd * rh._wrd); } Self operator*(const Self& rh) const { return Self(this->_wrd * rh._wrd); }
Self operator-(const Self& other) const { return Self(this->_wrd - other._wrd); } Self operator-(const Self& other) const { return Self(this->_wrd - other._wrd); }
Self& operator=(const Self& other) { this->_wrd = other._wrd; return *this; }
bool operator==(const Hyperbolic_octagon_translation<FT>& other) const { bool operator==(const Hyperbolic_octagon_translation<FT>& other) const {
return this->_wrd == other._wrd; return this->_wrd == other._wrd;