Re: Does Fast Code units compile in D5 Standard ?



Nicholas Sherlock wrote:
>
> PIntegerArray=^array[0..0] of integer; (Or possibly ^array of integer).

This one has the problem that you have to turn off range-checking when using
it. By declaring

PIntegerArray = ^array[0..SOME_UPPER_BOUND] of integer;

you can leave range-checking on.

--
Anders Isaksson, Sweden
BlockCAD: http://web.telia.com/~u16122508/proglego.htm
Gallery: http://web.telia.com/~u16122508/gallery/index.htm


.



Relevant Pages