Skip to content

Commit ea7e715

Browse files
committed
Merge pull request #348 from romainfrancois/patch-1
-pedantic does not like that (`R_xlen_t` vs `size_t)
2 parents cf02f45 + 685cb94 commit ea7e715

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inst/include/Rcpp/Benchmark/Timer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ namespace Rcpp{
110110
}
111111

112112
operator SEXP() const {
113-
R_xlen_t n = data.size();
113+
size_t n = data.size();
114114
NumericVector out(n);
115115
CharacterVector names(n);
116116
for (size_t i=0; i<n; i++) {

0 commit comments

Comments
 (0)