mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-20 22:52:51 +08:00
Remove unused parameter name.
This commit is contained in:
parent
c5b896c5a3
commit
01a31b81b2
@ -353,11 +353,11 @@ class DenseStorage<T, 0, Dynamic, Cols_, Options_> {
|
|||||||
}
|
}
|
||||||
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index rows(void) const EIGEN_NOEXCEPT {return m_rows;}
|
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index rows(void) const EIGEN_NOEXCEPT {return m_rows;}
|
||||||
EIGEN_DEVICE_FUNC static EIGEN_CONSTEXPR Index cols(void) EIGEN_NOEXCEPT {return Cols_;}
|
EIGEN_DEVICE_FUNC static EIGEN_CONSTEXPR Index cols(void) EIGEN_NOEXCEPT {return Cols_;}
|
||||||
EIGEN_DEVICE_FUNC void conservativeResize(Index, Index rows, Index cols) {
|
EIGEN_DEVICE_FUNC void conservativeResize(Index, Index rows, Index) {
|
||||||
m_rows = rows;
|
m_rows = rows;
|
||||||
eigen_assert(m_rows * Cols_ == 0 && "The number of rows times columns must equal the storage size.");
|
eigen_assert(m_rows * Cols_ == 0 && "The number of rows times columns must equal the storage size.");
|
||||||
}
|
}
|
||||||
EIGEN_DEVICE_FUNC void resize(Index, Index rows, Index cols) {
|
EIGEN_DEVICE_FUNC void resize(Index, Index rows, Index) {
|
||||||
m_rows = rows;
|
m_rows = rows;
|
||||||
eigen_assert(m_rows * Cols_ == 0 && "The number of rows times columns must equal the storage size.");
|
eigen_assert(m_rows * Cols_ == 0 && "The number of rows times columns must equal the storage size.");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user