Skip to content

Commit 07c9032

Browse files
committed
Removed the throw
1 parent 7601de7 commit 07c9032

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

hdr/sqlite_modern_cpp/type_wrapper.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ namespace sqlite {
171171
struct has_sqlite_type<std::monostate, SQLITE_NULL, void> : std::true_type {};
172172

173173
inline std::monostate get_col_from_db(sqlite3_stmt* stmt, int inx, result_type<std::monostate>) {
174-
if(sqlite3_column_type(stmt,inx) != SQLITE_NULL) throw 1;
175174
return std::monostate();
176175
}
177176
inline std::monostate get_val_from_db(sqlite3_value *value, result_type<std::monostate>) {

0 commit comments

Comments
 (0)