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
Add support for automatic conversion of a wrapped value inside a variant:
Example use case:
int value = 23;
variant var = std::ref(value);
// instead of writing this:
std::cout << var.extract_wrapped_value().to_int() << std::endl;
// user can now write this:
std::cout << var.to_int() << std::endl;
The text was updated successfully, but these errors were encountered:
Add support for automatic conversion of a wrapped value inside a variant:
Example use case:
The text was updated successfully, but these errors were encountered: