Remove const

This commit is contained in:
Jonas Kvinge
2024-06-12 18:09:23 +02:00
parent a36bf2df65
commit 4ba5113842
4 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ void SqlRow::Init(const SqlQuery &query) {
}
const QVariant SqlRow::value(const int n) const {
QVariant SqlRow::value(const int n) const {
Q_ASSERT(n < record_.count());