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
Use void as generic type? (similar to c void*)
-> if function requires a pointer as parameter void func(void*)
would be equal to template<typename T> void func(T*)
Use void as generic type? (similar to c void*)
-> if function requires a pointer as parameter
void func(void*)would be equal to
template<typename T> void func(T*)