stats: add missing template required by clang-11
This commit is contained in:
@@ -173,6 +173,17 @@ SQLiteOutput::Bind (sqlite3_stmt *stmt, int pos, const long &value) const
|
||||
return false;
|
||||
}
|
||||
|
||||
template<>
|
||||
bool
|
||||
SQLiteOutput::Bind (sqlite3_stmt *stmt, int pos, const long long &value) const
|
||||
{
|
||||
if (sqlite3_bind_int64 (stmt, pos, value) == SQLITE_OK)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
template<>
|
||||
bool
|
||||
SQLiteOutput::Bind (sqlite3_stmt *stmt, int pos, const uint16_t &value) const
|
||||
|
||||
Reference in New Issue
Block a user