mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
remove useless default argument values
This commit is contained in:
@@ -59,12 +59,12 @@ template<typename MatrixType> class DynBlock
|
||||
int _rows() const { return m_blockRows; }
|
||||
int _cols() const { return m_blockCols; }
|
||||
|
||||
Scalar& _write(int row, int col=0)
|
||||
Scalar& _write(int row, int col)
|
||||
{
|
||||
return m_matrix.write(row + m_startRow, col + m_startCol);
|
||||
}
|
||||
|
||||
Scalar _read(int row, int col=0) const
|
||||
Scalar _read(int row, int col) const
|
||||
{
|
||||
return m_matrix.read(row + m_startRow, col + m_startCol);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user