Abraxas/CCS Home Table of Contents
templateclass T65 { // dummy template
};
void f65i(int); // non-specialized function
template
void f65s(T& t); // specialized function
template
Function Name: f65()
void f65(T& t) {f65s( t ); // intentional customization or not?f65i( t );
}
Abraxas/CCS Home Table of Contents