remove useless default argument values

This commit is contained in:
Benoit Jacob
2007-12-05 07:44:57 +00:00
parent 1a94c28bfe
commit b569216dc3
3 changed files with 7 additions and 7 deletions

View File

@@ -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);
}