mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-21 07:09:17 +02:00
* size of TByteArray and TWordArray reduced by 1 on 16-bit CPUs to avoid 'structure too large' errors when compiling the sysutils unit
git-svn-id: trunk@24591 -
This commit is contained in:
parent
4708132ddf
commit
1d8d0d42a5
@ -96,10 +96,10 @@ type
|
||||
end;
|
||||
|
||||
PByteArray = ^TByteArray;
|
||||
TByteArray = Array[0..32767] of Byte;
|
||||
TByteArray = Array[0..{$ifdef CPU16}32766{$else}32767{$endif}] of Byte;
|
||||
|
||||
PWordarray = ^TWordArray;
|
||||
TWordArray = array[0..16383] of Word;
|
||||
TWordArray = array[0..{$ifdef CPU16}16382{$else}16383{$endif}] of Word;
|
||||
|
||||
TBytes = array of Byte;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user