[Date Prev][Date Next][Thread Prev][Thread Next][Author Index][Date Index][Thread Index]

Re: Translator addition



>From tribble@evilotto Fri Apr 27 23:43:34 1990
	From: tribble@evilotto (Eric Dean Tribble)
	To: xtech@evilotto
	Subject: translator addition
	
	
	thing asOop 
	
	translates to:
	
	(UInt4)(void *)thing
	
	This let's us translate identity based hash routines.
	
	dean
	

Because of the low precedence of casting, that probably wants to be
	(UInt4)(void*)(thing)

	- e -