SqliteModernCpp / sqlite_modern_cpp

The C++14 wrapper around sqlite library
MIT License
903 stars 156 forks source link

typo in the std::variant<std::string, ...> supprt #198

Closed marciso closed 4 years ago

marciso commented 4 years ago

I needed to apply the following patch in my case:

        template<typename T, typename ...Options>
        struct VariantFirstTextable<T, Options...> {
-               using type = typename VariantFirstTextable<void, Options...>::type;
+               using type = typename VariantFirstTextable<Options...>::type;
        };
aminroosta commented 4 years ago

I think this is in master, could you please try dev branch.

If need, please reopen with a PR for dev.