avoid implicit cast from sqlite_int64 to int
This commit is contained in:
parent
2d1f2d19cc
commit
524d6bea5f
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ public:
|
|||
return sqlite3_column_int (stmt_, col);
|
||||
}
|
||||
|
||||
int column_integer64 (int col)
|
||||
sqlite_int64 column_integer64 (int col)
|
||||
{
|
||||
return sqlite3_column_int64 (stmt_, col);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue