cxx_extern_templates.cpp 123 B

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