Код: Выделить всё
void ff(wchar_t*)
{
}
template
void ffc(T&& a)
{
ff(std::forward(a));
}
Подробнее здесь: https://stackoverflow.com/questions/339 ... forwarding
Код: Выделить всё
void ff(wchar_t*)
{
}
template
void ffc(T&& a)
{
ff(std::forward(a));
}