Skip to content

Commit

Permalink
remove dummy eq operator
Browse files Browse the repository at this point in the history
  • Loading branch information
vo-nil committed Oct 15, 2024
1 parent bbd96c1 commit 70135ef
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,16 +221,6 @@ namespace nil {

/************************* Arithmetic operations ***********************************/

constexpr curve_element& operator=(const curve_element &other) {
// handle special cases having to do with O
this->X = other.X;
this->Y = other.Y;
this->T = other.T;
this->Z = other.Z;

return *this;
}

constexpr curve_element& operator=(curve_element<params_type, form, curves::coordinates::affine> const &other) {
this->X = other.X;
this->Y = other.Y;
Expand Down

0 comments on commit 70135ef

Please sign in to comment.