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.
r_len_t
1 parent 292d019 commit 3cab0e5Copy full SHA for 3cab0e5
ChangeLog
@@ -1,3 +1,8 @@
1
+2014-09-01 Kevin Ushey <[email protected]>
2
+
3
+ * inst/include/Rcpp/vector/ListOf.h: `size()` member function should
4
+ return `R_len_t` rather than `int`
5
6
2014-08-30 Dirk Eddelbuettel <[email protected]>
7
8
* inst/include/Rcpp/vector/Vector.h: Mark two 'from string' ctors as
inst/include/Rcpp/vector/ListOf.h
@@ -91,7 +91,7 @@ class ListOf {
91
return list.end();
92
}
93
94
- inline int size() const {
+ inline R_len_t size() const {
95
return list.size() ;
96
97
0 commit comments