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

This commit is contained in:
Alibek Omarov 2018-03-04 00:21:05 +03:00
parent d52b03a9c4
commit 6818ff091d
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ public:
#ifdef _DEBUG
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 );
}