Skip to content

Commit 372a024

Browse files
committed
Less implicit conversations
1 parent 8906d99 commit 372a024

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

hdr/sqlite_modern_cpp.h

-6
Original file line numberDiff line numberDiff line change
@@ -250,12 +250,6 @@ namespace sqlite {
250250
get_col_from_db(*_binder, next_index++, result);
251251
return *this;
252252
}
253-
template<class T, typename = typename std::enable_if<detail::is_sqlite_value<T>::value, value_type &>::type>
254-
operator T() {
255-
T result;
256-
*this >> result;
257-
return result;
258-
}
259253
template<class ...Types>
260254
value_type &operator >>(std::tuple<Types...>& values) {
261255
assert(!next_index);

0 commit comments

Comments
 (0)