mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-08 06:23:21 +00:00
eliminate VS implicit conversion warnings
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user