A few more asterisks, mostly casts

This commit is contained in:
mathieui
2016-01-21 22:18:18 +01:00
parent f15ffda5a7
commit 4b06e92731
6 changed files with 19 additions and 19 deletions

View File

@ -75,7 +75,7 @@ EvictFindResult<V> EvictFind(std::unordered_map<K, EvictEntry<V>>& map, const K&
#if DEBUG
printf("failed to find key '");
for (size_t i = 0; i < sizeof(key); i++) {
printf("%02x", ((u8 *) &key)[i]);
printf("%02x", ((u8*) &key)[i]);
}
printf("'\n");
#endif