[Rcpp-commits] r3595 - pkg/RcppArmadillo/inst/include/RcppArmadillo

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri May 4 13:57:55 CEST 2012


Author: edd
Date: 2012-05-04 13:57:55 +0200 (Fri, 04 May 2012)
New Revision: 3595

Modified:
   pkg/RcppArmadillo/inst/include/RcppArmadillo/Mat_meat.h
Log:
small correction to initializing statement spotted by clang++


Modified: pkg/RcppArmadillo/inst/include/RcppArmadillo/Mat_meat.h
===================================================================
--- pkg/RcppArmadillo/inst/include/RcppArmadillo/Mat_meat.h	2012-05-03 18:41:02 UTC (rev 3594)
+++ pkg/RcppArmadillo/inst/include/RcppArmadillo/Mat_meat.h	2012-05-04 11:57:55 UTC (rev 3595)
@@ -2,7 +2,7 @@
 //
 // Mat_meat.h: Rcpp/Armadillo glue
 //
-// Copyright (C)  2010 - 2011  Dirk Eddelbuettel, Romain Francois and Douglas Bates
+// Copyright (C)  2010 - 2012  Dirk Eddelbuettel, Romain Francois and Douglas Bates
 //
 // This file is part of RcppArmadillo.
 //
@@ -102,7 +102,7 @@
 	, n_elem(0)
 	, vec_state(1)
 	, mem_state(0)
-	, mem(mem)
+	, mem(0)
 {
 	
 	arma_extra_debug_sigprint_this(this);
@@ -121,7 +121,7 @@
 	, n_elem( 0 )
 	, vec_state(0)
 	, mem_state(0)
-	, mem(mem)
+	, mem(0)
 {
 	
 	arma_extra_debug_sigprint_this(this);



More information about the Rcpp-commits mailing list