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
when I parse it, I have obviously different amount of TemplateParameters and TemplateArguments, like
an std::variant contains 2 parameters (_Void and _Types) and they should be resolved to 4 arguments (char, int, double, long).
I have absolutely no idea how can I figure out which set of arguments are resolving which template parameter?
Is there any documentation on it? Or how shall it be done?
Thanks,
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I can't get my head around the following issue. Assume I have something like this:
"
#include
void function1(std::variant<char, int, double, long> input);
"
when I parse it, I have obviously different amount of TemplateParameters and TemplateArguments, like
an std::variant contains 2 parameters (_Void and _Types) and they should be resolved to 4 arguments (char, int, double, long).
I have absolutely no idea how can I figure out which set of arguments are resolving which template parameter?
Is there any documentation on it? Or how shall it be done?
Thanks,
Beta Was this translation helpful? Give feedback.
All reactions