mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 11:50:19 +02:00
* internalerror for string to chararray
This commit is contained in:
parent
49a0170412
commit
35a172090a
@ -374,7 +374,11 @@ implementation
|
||||
regstopush: byte;
|
||||
begin
|
||||
with parraydef(resulttype)^ do
|
||||
arrsize := highrange-lowrange+1;
|
||||
begin
|
||||
if highrange<lowrange then
|
||||
internalerror(75432653);
|
||||
arrsize := highrange-lowrange+1;
|
||||
end;
|
||||
|
||||
if (left.nodetype = stringconstn) and
|
||||
{ left.length+1 since there's always a terminating #0 character (JM) }
|
||||
@ -1493,7 +1497,10 @@ begin
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.11 2000-12-25 00:07:32 peter
|
||||
Revision 1.12 2001-01-08 21:45:11 peter
|
||||
* internalerror for string to chararray
|
||||
|
||||
Revision 1.11 2000/12/25 00:07:32 peter
|
||||
+ new tlinkedlist class (merge of old tstringqueue,tcontainer and
|
||||
tlinkedlist objects)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user