Range API needs size_t for .length.

This commit is contained in:
H. S. Teoh 2017-12-12 17:58:12 -08:00
parent 61f0e5ed48
commit 47bacf0456
5 changed files with 6 additions and 6 deletions

View file

@ -126,7 +126,7 @@ class PostgresResult : ResultSet {
fetchNext();
}
int length() {
override size_t length() {
return numRows;
}