Re: [fpc-pascal] Re: TFPCHeapStatus miscalculations in 2.3.1
Seth Grover schreef: Actually I was able to distill it down into a smaller example: randomize(); For reproducebility, can you change it to RandSeed := (some *constant* you choose); Vincent ___ fpc
[fpc-pascal] Re: TFPCHeapStatus miscalculations in 2.3.1
Actually I was able to distill it down into a smaller example: program Project1; {$mode objfpc}{$H+} uses Classes, SysUtils; function RandomRange(const low : longint; const high : longint) : longint; begin if (high < low)