[Rivet-svn] r3031 - trunk/include/Rivet/Math

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Tue Mar 29 13:25:03 BST 2011


Author: dgrell
Date: Tue Mar 29 13:25:03 2011
New Revision: 3031

Log:
fixed gcc 4.6 unused variable warning

Modified:
   trunk/include/Rivet/Math/MatrixN.hh

Modified: trunk/include/Rivet/Math/MatrixN.hh
==============================================================================
--- trunk/include/Rivet/Math/MatrixN.hh	Mon Mar 28 00:05:11 2011	(r3030)
+++ trunk/include/Rivet/Math/MatrixN.hh	Tue Mar 29 13:25:03 2011	(r3031)
@@ -105,7 +105,6 @@
     }
 
     Vector<N> getColumn(const size_t col) const {
-      const Eigen::Vector<double,N> eVec = _matrix.column(col);
       Vector<N> rtn;
       for (size_t i = 0; i < N; ++i) {
         rtn.set(i, _matrix(i,col));


More information about the Rivet-svn mailing list