aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Transpose.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-06-09 13:32:12 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-06-09 13:32:12 +0200
commit4aba24a1b25d8d022b1e807cb40bd1d2acec2e44 (patch)
treebb16d4375214cfd4bd7749890ca76d7d96fc4f6a /Eigen/src/Core/Transpose.h
parent302cf8ffe275df66fc615b694249a2f36c2605b2 (diff)
Clean argument names of some functions
Diffstat (limited to 'Eigen/src/Core/Transpose.h')
-rw-r--r--Eigen/src/Core/Transpose.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Transpose.h b/Eigen/src/Core/Transpose.h
index 2c967abca..7221ee03e 100644
--- a/Eigen/src/Core/Transpose.h
+++ b/Eigen/src/Core/Transpose.h
@@ -60,7 +60,7 @@ template<typename MatrixType> class Transpose
typedef typename internal::remove_all<MatrixType>::type NestedExpression;
EIGEN_DEVICE_FUNC
- explicit inline Transpose(MatrixType& a_matrix) : m_matrix(a_matrix) {}
+ explicit inline Transpose(MatrixType& matrix) : m_matrix(matrix) {}
EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Transpose)