mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-07 11:24:30 +02:00
use std::size_t in Data interfaces (may break some code on 64-bit platforms)
This commit is contained in:
@@ -1997,7 +1997,7 @@ void SQLiteTest::testAsync()
|
||||
Statement stmt2 = (tmp << "SELECT * FROM Strings", into(data), async, limit(step));
|
||||
assert (data.size() == 0);
|
||||
assert (!stmt2.done());
|
||||
Statement::ResultType rows = 0;
|
||||
std::size_t rows = 0;
|
||||
|
||||
for (int i = 0; !stmt2.done(); i += step)
|
||||
{
|
||||
|
Reference in New Issue
Block a user