We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3880f commit ad6f6bdCopy full SHA for ad6f6bd
inst/include/Rcpp/sugar/functions/rep.h
@@ -60,7 +60,7 @@ class Rep_Single : public Rcpp::VectorBase<
60
61
private:
62
const T& x ;
63
- int R_xlen_t ;
+ R_xlen_t n;
64
} ;
65
66
} // sugar
inst/include/Rcpp/vector/ChildVector.h
@@ -27,7 +27,7 @@ class ChildVector : public T {
27
28
public:
29
30
- ChildVector(SEXP data_, SEXP parent_, int i_):
+ ChildVector(SEXP data_, SEXP parent_, R_xlen_t i_):
31
T(data_),
32
parent(parent_),
33
i(i_) {}
@@ -68,7 +68,7 @@ class ChildVector : public T {
68
69
70
SEXP parent;
71
- int i;
+ R_xlen_t i;
72
};
73
74
} // namespace Rcpp
0 commit comments