cxx_default_function_template_args.cpp 107 B

123456789101112
  1. template <typename T = int>
  2. int someFunc()
  3. {
  4. T t = 0;
  5. return t;
  6. }
  7. void otherFunc()
  8. {
  9. someFunc();
  10. }