mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-13 20:18:50 +03:00
fix big mistake that made it not run
This commit is contained in:
@@ -144,7 +144,7 @@ private:
|
||||
template<typename T>
|
||||
typename std::enable_if<std::is_integral<T>::value, int>::type
|
||||
Bind(int index, T val) {
|
||||
return m_db->SetError(sqlite3_bind_int64(m_stmt, val, static_cast<sqlite3_int64>(val)));
|
||||
return m_db->SetError(sqlite3_bind_int64(m_stmt, index, val));
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
|
||||
Reference in New Issue
Block a user