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

Re: CONSTRUCT_ON... and NOT_A_TYPE documentation.



> 	   CONSTRUCT_ON(HEAP,VAR,TYPE,ARGS)
>    ...
> 	   CONSTRUCT_ON(ptrVar,HEAP,Foo,(arg1,arg2,...));
> 
> Which argument order is right?
> 

Oopsie.

The first.  The latter example should read:

	CONSTRUCT_ON(HEAP,ptrVar,Foo,(arg1,arg2,...));

i.e., it is in the order that reads clearly in English.

	michael