File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2017-01-23 James J Balamuta <
[email protected] >
2
+
3
+ * inst/include/Rcpp/DataFrame.h: Corrected return type for column size.
4
+
5
+ 2017-01-22 Dirk Eddelbuettel <
[email protected] >
6
+
7
+ * inst/include/Rcpp/DataFrame.h: Simplified and removed deprecation language.
8
+
1
9
2017-01-21 James J Balamuta <
[email protected] >
2
10
3
11
* inst/include/Rcpp/DataFrame.h: Added alias for column and row size
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ namespace Rcpp{
87
87
inline int nrows () const { return DataFrame_Impl::nrow (); }
88
88
inline int rows () const { return DataFrame_Impl::nrow (); }
89
89
90
- inline int ncol () const { return DataFrame_Impl::length (); }
91
- inline int cols () const { return DataFrame_Impl::length (); }
90
+ inline R_xlen_t ncol () const { return DataFrame_Impl::length (); }
91
+ inline R_xlen_t cols () const { return DataFrame_Impl::length (); }
92
92
93
93
static DataFrame_Impl create (){
94
94
return DataFrame_Impl () ;
You can’t perform that action at this time.
0 commit comments