File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
include/Rcpp/sugar/functions Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 19
19
\itemize {
20
20
\item Added new Sugar function \code {median()} (Nathan in PR \ghpr {425 }
21
21
closing \ghit {424 })
22
- \item Added new Sugar function \code {cbind()} (Nathan in PR TBD
22
+ \item Added new Sugar function \code {cbind()} (Nathan in PR \ ghpr { 447 }
23
23
closing \ghit {407 })
24
24
}
25
25
\item Changes in Rcpp Attributes :
Original file line number Diff line number Diff line change @@ -192,9 +192,7 @@ class JoinOp
192
192
193
193
inline R_xlen_t nrow () const { return e1 .nrow (); }
194
194
195
- inline R_xlen_t ncol () const {
196
- return e1 .ncol () + e2 .ncol ();
197
- }
195
+ inline R_xlen_t ncol () const { return e1 .ncol () + e2 .ncol (); }
198
196
199
197
inline stored_type operator [](R_xlen_t i) const {
200
198
return (i < e1 .size ()) ? e1 [i] : e2 [i - e1 .size ()];
You can’t perform that action at this time.
0 commit comments