We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c98a2 commit e317be6Copy full SHA for e317be6
hdr/sqlite_modern_cpp.h
@@ -854,7 +854,7 @@ namespace sqlite {
854
}
855
template<class Integral, class = std::enable_if<std::is_integral<Integral>::type>>
856
inline void store_result_in_db(sqlite3_context* db, const Integral& val) {
857
- store_result_in_db(db, val);
+ store_result_in_db(db, static_cast<sqlite3_int64>(val));
858
859
template<class Integral, class = typename std::enable_if<std::is_integral<Integral>::value>::type>
860
inline void get_col_from_db(database_binder& db, int inx, Integral& val) {
0 commit comments