eliminate VS implicit conversion warnings

This commit is contained in:
Alex Fabijanic
2017-10-05 18:25:08 -05:00
parent 71531d1a75
commit 2e9aecb160
18 changed files with 44 additions and 42 deletions

View File

@@ -277,7 +277,7 @@ std::size_t SQLiteStatementImpl::next()
if (_affectedRowCount == POCO_SQLITE_INV_ROW_CNT) _affectedRowCount = 0;
if (extracts.size())
_affectedRowCount += (*extracts.begin())->numOfRowsHandled();
_affectedRowCount += static_cast<int>((*extracts.begin())->numOfRowsHandled());
else
{
_stepCalled = true;