mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
Remove superfluous const from returned types
This commit is contained in:
parent
b301a59899
commit
844f400a62
2 changed files with 5 additions and 5 deletions
|
@ -93,7 +93,7 @@ public:
|
|||
unsigned m_row;
|
||||
public:
|
||||
ref_row(const static_matrix & m, unsigned row): m_matrix(m), m_row(row) {}
|
||||
const T operator[](unsigned col) const { return m_matrix.get_elem(m_row, col); }
|
||||
T operator[](unsigned col) const { return m_matrix.get_elem(m_row, col); }
|
||||
};
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue