freebsd-ports/x11/metisse/files/patch-FvwmCompositor_eigen_ludecomposition.h
John Marino 867d2adf7b x11/metisse: add <unistd.h> and other c++ fixes
Approved by:	portmgr (bapt, implicit)
2013-10-01 11:49:25 +00:00

20 lines
804 B
C++

--- FvwmCompositor/eigen/ludecomposition.h.orig 2008-03-25 17:15:13.000000000 +0000
+++ FvwmCompositor/eigen/ludecomposition.h
@@ -85,7 +85,7 @@ class LUDecomposition
public:
/** Performs the LU Decomposition of mat. Use this constructor. */
- LUDecomposition( const Matrix<T, Size> & mat ) { perform( mat ); }
+ LUDecomposition( const Matrix<T, Size> & mat ) { this->perform( mat ); }
protected:
/** Default constructor. Does nothing. \internal
@@ -128,7 +128,7 @@ class LUDecompositionX
public:
/** Performs the LU Decomposition of mat. Use this constructor. */
- LUDecompositionX( const MatrixX<T> & mat ) { perform( mat ); }
+ LUDecompositionX( const MatrixX<T> & mat ) { this->perform( mat ); }
protected:
/** Default constructor. Does nothing. \internal