-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delphi 7 and FPC compatibility #402
Comments
Sorry, we have to dig deeper... That must be right above the class.
|
AngusJohnson
added a commit
that referenced
this issue
Feb 10, 2023
Fixed Delphi 7 and FPC compatibility (#402)
AngusJohnson
added a commit
that referenced
this issue
Feb 10, 2023
Hopefully finally fixed now 🤞🙏. |
Everything runs like clockwork again. Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please add
to unit Clipper.Core for D7 compatibility. THX!
P.S.
The declaration of TPointerList in Delphi 2007 looks like this:
TPointerList = array[0..MaxListSize - 1] of Pointer;
while the one in Delphi 10.2 is this:
TPointerList = array of Pointer;
The text was updated successfully, but these errors were encountered: