Например:
Код: Выделить всё
template
void run_func(/* type of argument???? */ value) {
Func(value);
}
Код: Выделить всё
auto function_runner = &run_func;
Подробнее здесь: https://stackoverflow.com/questions/793 ... -parameter
Код: Выделить всё
template
void run_func(/* type of argument???? */ value) {
Func(value);
}
Код: Выделить всё
auto function_runner = &run_func;