diff options
author | Jitse Niesen <jitse@maths.leeds.ac.uk> | 2011-01-07 13:46:23 +0000 |
---|---|---|
committer | Jitse Niesen <jitse@maths.leeds.ac.uk> | 2011-01-07 13:46:23 +0000 |
commit | 9111d73017f90aa0a3b005d914567263773c6690 (patch) | |
tree | a5ea02061e6c36e2ed985e9d33f72f86e415ecf7 | |
parent | 4abb772b520e1ac407032f2c1435fe7368448fbc (diff) |
Fix compilation error in HouseholderSequence introduced in my previous commit.
-rw-r--r-- | Eigen/src/Householder/HouseholderSequence.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Householder/HouseholderSequence.h b/Eigen/src/Householder/HouseholderSequence.h index a1d332f76..2acf86379 100644 --- a/Eigen/src/Householder/HouseholderSequence.h +++ b/Eigen/src/Householder/HouseholderSequence.h @@ -376,6 +376,9 @@ template<typename VectorsType, typename CoeffsType, int Side> class HouseholderS Index length() const { return m_length; } /**< \brief Returns the length of the Householder sequence. */ Index shift() const { return m_shift; } /**< \brief Returns the shift of the Householder sequence. */ + /* Necessary for .adjoint() and .conjugate() */ + template <typename VectorsType2, typename CoeffsType2, int Side2> friend class HouseholderSequence; + protected: /** \brief Sets the transpose flag. |