Fix QtCreater error
(msvc accepts it but it is an error according to gcc and clang)
This commit is contained in:
parent
9e645db1a8
commit
950fea873c
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ void CrudModel::initRowMapping()
|
|||
{
|
||||
m_rowMapping.resize(m_rowCount);
|
||||
for (int i = 0; i < m_rowCount; ++i)
|
||||
m_rowMapping[i] = { i };
|
||||
m_rowMapping[i] = RowMapping{ i };
|
||||
}
|
||||
|
||||
void CrudModel::connectionStateChanged(ASyncDBConnection::State state)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue