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
{{ message }}
This repository has been archived by the owner on Apr 25, 2021. It is now read-only.
Allow datatypes to be listed as auto and let the compiler resolve the types.
Example use cases
template ( wild T )
void process(T val) { /* do something */ }
int main () {
auto a = 65 - 23;
auto b = returnsRect();
process<auto>(b); // auto fill
return 0;
}
The text was updated successfully, but these errors were encountered:
Allow datatypes to be listed as
auto
and let the compiler resolve the types.Example use cases
The text was updated successfully, but these errors were encountered: