Cleanups.

This commit is contained in:
JoelKatz
2012-02-21 09:05:30 -08:00
parent b89d95f83d
commit 203a519ee5
4 changed files with 18 additions and 21 deletions

View File

@@ -101,7 +101,7 @@ SHAMapNode::SHAMapNode(const void *ptr, int len)
else
{
memcpy(&mNodeID, ptr, 32);
mDepth=*(reinterpret_cast<const unsigned char *>(ptr) + 32);
mDepth=*(static_cast<const unsigned char *>(ptr) + 32);
}
}