13 lines
122 B
C++
13 lines
122 B
C++
|
|
template<typename T>
|
|
void someFunc()
|
|
{
|
|
}
|
|
|
|
extern template void someFunc<int>();
|
|
|
|
void otherFunc()
|
|
{
|
|
someFunc<int>();
|
|
}
|