Skip to content

Commit 8bc7d25

Browse files
committed
Fix bug with experimental optional
1 parent fde544f commit 8bc7d25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hdr/sqlite_modern_cpp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ namespace sqlite {
239239
#endif
240240
#ifdef MODERN_SQLITE_STD_OPTIONAL_SUPPORT
241241
template <typename T>
242-
struct is_sqlite_value< std::optional<T> > : public is_sqlite_value<T> {};
242+
struct is_sqlite_value< optional<T> > : public is_sqlite_value<T> {};
243243
#endif
244244

245245
#ifdef _MODERN_SQLITE_BOOST_OPTIONAL_SUPPORT

0 commit comments

Comments
 (0)