Raw File
cxx_default_function_template_args.cpp

template <typename T = int>
int someFunc()
{
  T t = 0;
  return t;
}

void otherFunc()
{
  someFunc();
}
back to top