Changeset 402 for trunk/src/stl/hash_table.cc
- Timestamp:
- 06/13/15 21:51:27 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/stl/hash_table.cc
r395 r402 47 47 }; 48 48 49 static const nv::uint32 s_primes_size = ( sizeof( s_primes ) / sizeof( *s_primes ) );49 //static const nv::uint32 s_primes_size = ( sizeof( s_primes ) / sizeof( *s_primes ) ); 50 50 51 51 namespace nv 52 52 { 53 void* g_hash_table_empty[2] = { nullptr, (void*)uintptr_t( ~0) };53 void* g_hash_table_empty[2] = { nullptr, reinterpret_cast<void*>( uintptr_t( ~0 ) ) }; 54 54 } 55 55
Note: See TracChangeset
for help on using the changeset viewer.