mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
eliminate VS implicit conversion warnings
This commit is contained in:
@@ -228,7 +228,7 @@ bool Extractor::isNull(std::size_t pos, std::size_t)
|
||||
if (!_nulls[pos].first)
|
||||
{
|
||||
_nulls[pos].first = true;
|
||||
_nulls[pos].second = (SQLITE_NULL == sqlite3_column_type(_pStmt, pos));
|
||||
_nulls[pos].second = (SQLITE_NULL == sqlite3_column_type(_pStmt, static_cast<int>(pos)));
|
||||
}
|
||||
|
||||
return _nulls[pos].second;
|
||||
|
||||
Reference in New Issue
Block a user