You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/frollapply.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ SEXP setgrowable(SEXP x) {
84
84
returnx;
85
85
} else {
86
86
// # nocov start ## does not seem to be reported to codecov most likely due to running in a fork, I manually debugged that it is being called when running froll.Rraw
87
-
for (R_xlen_ti=0; i<xlength(x); ++i) {
87
+
for (inti=0; i<LENGTH(x); i++) {
88
88
//Rprintf("%d",3); // manual code coverage to confirm it is reached when marking nocov
89
89
SEXPthis=VECTOR_ELT(x, i);
90
90
if (ALTREP(this)) internal_error(__func__, "frollapply's adaptive=T setgrowable should have not been called with an ALTREP input"); // # nocov
0 commit comments