aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/DiagonalCoeffs.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-31 13:29:51 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-31 13:29:51 +0000
commit42f6590bb26d77bfa67f57c64ff9cc6d38e23f58 (patch)
tree9bbda84078dc76c5b978a91a5a6295b3e883b849 /Eigen/src/Core/DiagonalCoeffs.h
parent86220784b6df06c13292c308a2254381d7b7630b (diff)
cleanup: remove copy contructors when the compiler is able to generate a satisfactory
default copy constructor; remove useless static_cast's; some misc cleanup.
Diffstat (limited to 'Eigen/src/Core/DiagonalCoeffs.h')
-rw-r--r--Eigen/src/Core/DiagonalCoeffs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Eigen/src/Core/DiagonalCoeffs.h b/Eigen/src/Core/DiagonalCoeffs.h
index 1c5353df0..1b9920cdd 100644
--- a/Eigen/src/Core/DiagonalCoeffs.h
+++ b/Eigen/src/Core/DiagonalCoeffs.h
@@ -48,8 +48,6 @@ template<typename MatrixType> class DiagonalCoeffs
DiagonalCoeffs(const MatRef& matrix) : m_matrix(matrix) {}
- DiagonalCoeffs(const DiagonalCoeffs& other) : m_matrix(other.m_matrix) {}
-
EIGEN_INHERIT_ASSIGNMENT_OPERATORS(DiagonalCoeffs)
private: