* fix PString

This commit is contained in:
Michael VAN CANNEYT 2023-01-06 15:20:06 +01:00 committed by Michaël Van Canneyt
parent 96c83e7f39
commit 7edf9b3884

View File

@ -12,12 +12,12 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit objpas;
{$Mode ObjFpc}
{$I-}
{$ifndef Unix}
{$S-}
{$endif}
unit objpas;
interface
@ -37,7 +37,11 @@ interface
{$endif CPU16}
{ Ansistring are the default }
{$IF SIZEOF(Char)=2}
PString = PWideString;
{$ELSE}
PString = PAnsiString;
{$ENDIF}
{ array types }
{$ifdef CPU16}