[Rcpp-commits] r885 - pkg/RcppArmadillo/inst/include
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Fri Mar 12 21:50:24 CET 2010
Author: romain
Date: 2010-03-12 21:50:23 +0100 (Fri, 12 Mar 2010)
New Revision: 885
Modified:
pkg/RcppArmadillo/inst/include/RcppArmadillo.h
Log:
follow Doug's lead and trim the useless ; in RcppArmadillo too
Modified: pkg/RcppArmadillo/inst/include/RcppArmadillo.h
===================================================================
--- pkg/RcppArmadillo/inst/include/RcppArmadillo.h 2010-03-12 20:11:45 UTC (rev 884)
+++ pkg/RcppArmadillo/inst/include/RcppArmadillo.h 2010-03-12 20:50:23 UTC (rev 885)
@@ -103,15 +103,15 @@
template <typename T> SEXP wrap ( const arma::Mat<T>& data ){
return RcppArmadillo::arma_wrap( data, Dimension( data.n_rows, data.n_cols ) ) ;
- } ;
+ }
template <typename T> SEXP wrap( const arma::Col<T>& data ){
return RcppArmadillo::arma_wrap( data, Dimension( data.n_elem, 1) ) ;
- } ;
+ }
template <typename T> SEXP wrap( const arma::Row<T>& data ){
return RcppArmadillo::arma_wrap(data, Dimension( 1, data.n_elem ) ) ;
- } ;
+ }
#if ARMA_VERSION_GE_070
template <typename T> SEXP wrap( const arma::Cube<T>& data ){
More information about the Rcpp-commits
mailing list