Closed marciso closed 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; };
I think this is in master, could you please try dev branch.
If need, please reopen with a PR for dev.
I needed to apply the following patch in my case: