Abraxas/CCS  Home  Table of Contents

Module - 65.html

ABRAXAS SOFTWARE - CodeCheck CCS Test-Suite

CCS -C Test Suite for Module - 65.cpp

// 65) Customize intentionally and explicitly.

template  class 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

ABRAXAS SOFTWARE - CodeCheck CCS Test-Suite CCS