From b7d4a081c75e5e4e6588b228b1092d0148e0f87e Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 28 Jan 2019 09:39:46 +0100 Subject: [PATCH] No need to write the assignment as it comes by default --- .../include/CGAL/Hyperbolic_octagon_translation.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Periodic_4_hyperbolic_triangulation_2/include/CGAL/Hyperbolic_octagon_translation.h b/Periodic_4_hyperbolic_triangulation_2/include/CGAL/Hyperbolic_octagon_translation.h index 218aba7d920..092937897d1 100644 --- a/Periodic_4_hyperbolic_triangulation_2/include/CGAL/Hyperbolic_octagon_translation.h +++ b/Periodic_4_hyperbolic_triangulation_2/include/CGAL/Hyperbolic_octagon_translation.h @@ -159,7 +159,6 @@ public: 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) { this->_wrd = other._wrd; return *this; } bool operator==(const Hyperbolic_octagon_translation& other) const { return this->_wrd == other._wrd;