Replace C-style cast with static_cast

This commit is contained in:
Dmitry-Me 2014-08-15 11:03:47 +04:00
parent 73c822c201
commit 5657176b61
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ public:
return;
}
--_currentAllocs;
Chunk* chunk = (Chunk*)mem;
Chunk* chunk = static_cast<Chunk*>( mem );
#ifdef DEBUG
memset( chunk, 0xfe, sizeof(Chunk) );
#endif