[Rcpp-commits] r2355 - pkg/Rcpp/inst/include/Rcpp/vector

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Oct 21 23:06:20 CEST 2010


Author: romain
Date: 2010-10-21 23:06:20 +0200 (Thu, 21 Oct 2010)
New Revision: 2355

Modified:
   pkg/Rcpp/inst/include/Rcpp/vector/Matrix.h
Log:
second shot

Modified: pkg/Rcpp/inst/include/Rcpp/vector/Matrix.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/vector/Matrix.h	2010-10-21 20:10:23 UTC (rev 2354)
+++ pkg/Rcpp/inst/include/Rcpp/vector/Matrix.h	2010-10-21 21:06:20 UTC (rev 2355)
@@ -121,9 +121,9 @@
     inline Proxy operator[]( int i ){
     	return static_cast< Vector<RTYPE>* >( this )->operator[]( i ) ;
     }
-    inline Proxy operator()( int i, int j ){
-    	return static_cast< Vector<RTYPE>* >( this )->operator()( i, j ) ;
-    }
+    // inline Proxy operator()( int i, int j ){
+    // 	return static_cast< Vector<RTYPE>* >( this )->operator()( i, j ) ;
+    // }
     
     inline Proxy operator[]( int i ) const {
     	return static_cast< const Vector<RTYPE>* >( this )->operator[]( i ) ;



More information about the Rcpp-commits mailing list