Skip to content

Commit

Permalink
to cran
Browse files Browse the repository at this point in the history
  • Loading branch information
dcooley committed Dec 12, 2024
1 parent 64e1873 commit 4c7712f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/h3rUtils.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ SEXP cellBoundaryToList(CellBoundary *cb) {
SET_REAL_ELT(lats, i, radsToDegs(cb->verts[i].lat));
SET_REAL_ELT(lons, i, radsToDegs(cb->verts[i].lng));
}
SEXP lst = latLngList(lats, lons, rowNames);
UNPROTECT(3);
return latLngList(lats, lons, rowNames);
return lst;
}

SEXP intToSexpArray(int *arr, R_xlen_t n) {
Expand Down

0 comments on commit 4c7712f

Please sign in to comment.