Browse Source

Remove cast pointer to size_t in cbase.h, it's useless here

caseclosed
Alibek Omarov 7 years ago
parent
commit
6818ff091d
  1. 2
      dlls/cbase.h

2
dlls/cbase.h

@ -283,7 +283,7 @@ public:
#ifdef _DEBUG #ifdef _DEBUG
void FunctionCheck( void *pFunction, char *name ) void FunctionCheck( void *pFunction, char *name )
{ {
if( pFunction && !NAME_FOR_FUNCTION( (size_t)( pFunction ) ) ) if( pFunction && !NAME_FOR_FUNCTION( pFunction ) )
ALERT( at_error, "No EXPORT: %s:%s (%08lx)\n", STRING( pev->classname ), name, (size_t)pFunction ); ALERT( at_error, "No EXPORT: %s:%s (%08lx)\n", STRING( pev->classname ), name, (size_t)pFunction );
} }

Loading…
Cancel
Save