We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Sample:
auto f = [](storage fn_, Args &&...args) { static_cast<T &> (*get<T>(fn_))(std::forward<Args>(args)...); };
If you remove *, that space following static_cast<T &> disappears (correctly).
*
static_cast<T &>