Browse Source

Derive Eq trait for Point

pull/1/head
Ahmad 3 weeks ago
parent
commit
39296e6e7d
No known key found for this signature in database GPG Key ID: FF00EBC04B2D00AA
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/lib.rs

+ 1
- 1
src/lib.rs

@ -148,7 +148,7 @@ impl PointProjective {
}
}
#[derive(Clone, Debug)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Point {
pub x: Fq,
pub y: Fq,

Loading…
Cancel
Save