mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-15 11:49:27 +02:00
* Prevent range check error when compiling with -Cr
git-svn-id: trunk@3470 -
This commit is contained in:
parent
32e0de3ba7
commit
ce3ce89028
@ -52,7 +52,7 @@ function fpsigfillset(var nset : tsigset):cint;
|
||||
var i :longint;
|
||||
|
||||
Begin
|
||||
for i:=0 to wordsinsigset-1 DO nset[i]:=NOT 0;
|
||||
for i:=0 to wordsinsigset-1 DO nset[i]:=high(nset[i]);
|
||||
fpsigfillset:=0;
|
||||
End;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user