June 01, 1997
C++
Listing 6: Detecting improper calls to platform-specific code
void CompactMemory( void )
{
#if HANDLE_BASED
DoCompaction( );
#else
assert( "CompactMemory should not be called !" == NULL );
#endif
}
//End of File
|
|
||||||||||||||||||||||||||||
|
|
|
|