Skip to content
Prev 36116 / 63424 Next

shash in unique.c

Matthew Dowle wrote:
Two negative but probably not fatal issues:

Pointers and ints are not always the same size.  In Win64, ints are 32 
bits, pointers are 64 bits.  (Can we be sure there is some integer type 
the same size as a pointer?  I don't know, ask a C expert.)

We might want to save the hash to disk.  On restore, the pointer based 
hash would be all wrong.  (I don't know if we actually do ever save a 
hash to disk.  )

Duncan Murdoch