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+
192017-01-21 James J Balamuta <
[email protected] >
210
311 * 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{
8787 inline int nrows () const { return DataFrame_Impl::nrow (); }
8888 inline int rows () const { return DataFrame_Impl::nrow (); }
8989
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 (); }
9292
9393 static DataFrame_Impl create (){
9494 return DataFrame_Impl () ;
You can’t perform that action at this time.
0 commit comments