mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-24 16:49:44 +02:00
* Fixed cycling with 2.4.4 after r19707 (2.4.4 does not define FPC_HAS_FEATURE_RESOURCES, so related stuff is not compiled)
git-svn-id: trunk@19711 -
This commit is contained in:
parent
0093517227
commit
e62cd71a2f
@ -299,7 +299,11 @@ type
|
||||
TExceptMapEntry=record
|
||||
code: byte;
|
||||
cls: ExceptClass;
|
||||
{$IFDEF FPC_HAS_FEATURE_RESOURCES} // This is necessary for 2.4.4, which does not have reasources as a separate feature
|
||||
msg: PResStringRec;
|
||||
{$else FPC_HAS_FEATURE_RESOURCES}
|
||||
msg: PString;
|
||||
{$endif FPC_HAS_FEATURE_RESOURCES}
|
||||
end;
|
||||
|
||||
const
|
||||
|
Loading…
Reference in New Issue
Block a user