Skip to content

Commit

Permalink
Merge pull request #121 from lpsinger/remove-unused-static-function
Browse files Browse the repository at this point in the history
Remove unused, unreachable static function
  • Loading branch information
lpsinger committed Jan 21, 2019
2 parents a994a49 + 578b5c2 commit c7fbe36
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions cextern/astrometry.net/healpix.c
Original file line number Diff line number Diff line change
Expand Up @@ -394,15 +394,6 @@ static Inline anbool issouthpolar(int healpix)
return (healpix >= 8);
}

static int compose_xy(int x, int y, int Nside) {
assert(Nside > 0);
assert(x >= 0);
assert(x < Nside);
assert(y >= 0);
assert(y < Nside);
return (x * Nside) + y;
}

int64_t healpixl_compose_xy(int bighp, int x, int y, int Nside) {
int64_t ns = Nside;
assert(Nside > 0);
Expand Down

0 comments on commit c7fbe36

Please sign in to comment.