You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having an issue with popValues on line 215.
template<typename ...Types>
std::tuple<Types...> popValues(Handle state) {
// Initialise tuple with default values for each type of Parameters.
std::tuple<Types...> values{ ValueMediator::defaultValue()... };
impl::rpopValues(state, &values);
return std::move(values);
}
error: implicit instantiation of undefined template
The text was updated successfully, but these errors were encountered:
Having an issue with popValues on line 215.
template<typename ...Types>
std::tuple<Types...> popValues(Handle state) {
// Initialise tuple with default values for each type of Parameters.
std::tuple<Types...> values{ ValueMediator::defaultValue()... };
impl::rpopValues(state, &values);
error: implicit instantiation of undefined template
The text was updated successfully, but these errors were encountered: