3
0
Fork 0
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:
Michał Janiszewski 2018-10-16 19:30:48 +02:00
parent b301a59899
commit 844f400a62
2 changed files with 5 additions and 5 deletions

View file

@ -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: