diff --git a/cextern/astrometry.net/healpix.c b/cextern/astrometry.net/healpix.c index 46e34a7..5616564 100644 --- a/cextern/astrometry.net/healpix.c +++ b/cextern/astrometry.net/healpix.c @@ -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);