aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Core/DynBlock.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core/DynBlock.h')
-rw-r--r--src/Core/DynBlock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Core/DynBlock.h b/src/Core/DynBlock.h
index ea9be7680..8a52b4c58 100644
--- a/src/Core/DynBlock.h
+++ b/src/Core/DynBlock.h
@@ -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);
}