Skip to content

Commit

Permalink
group_impl.h: remove unused secp256k1_ge_set_infinity function
Browse files Browse the repository at this point in the history
Also remove `secp256k1_fe_verify` from field_*_.impl.h when VERIFY is not defined
  • Loading branch information
apoelstra committed Nov 28, 2016
1 parent a724d72 commit 03ff8c2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
4 changes: 0 additions & 4 deletions src/field_10x26_impl.h
Expand Up @@ -38,10 +38,6 @@ static void secp256k1_fe_verify(const secp256k1_fe *a) {
}
VERIFY_CHECK(r == 1);
}
#else
static void secp256k1_fe_verify(const secp256k1_fe *a) {
(void)a;
}
#endif

static void secp256k1_fe_normalize(secp256k1_fe *r) {
Expand Down
4 changes: 0 additions & 4 deletions src/field_5x52_impl.h
Expand Up @@ -49,10 +49,6 @@ static void secp256k1_fe_verify(const secp256k1_fe *a) {
}
VERIFY_CHECK(r == 1);
}
#else
static void secp256k1_fe_verify(const secp256k1_fe *a) {
(void)a;
}
#endif

static void secp256k1_fe_normalize(secp256k1_fe *r) {
Expand Down
6 changes: 0 additions & 6 deletions src/group_impl.h
Expand Up @@ -200,12 +200,6 @@ static void secp256k1_gej_set_infinity(secp256k1_gej *r) {
secp256k1_fe_clear(&r->z);
}

static void secp256k1_ge_set_infinity(secp256k1_ge *r) {
r->infinity = 1;
secp256k1_fe_clear(&r->x);
secp256k1_fe_clear(&r->y);
}

static void secp256k1_gej_clear(secp256k1_gej *r) {
r->infinity = 0;
secp256k1_fe_clear(&r->x);
Expand Down

0 comments on commit 03ff8c2

Please sign in to comment.