Currently I am recompiling a higher version of Delphi (XE) project to lower version 5.
I have multiple enums with explicit values as below:
type
TSize = (ftSmallSize=10, ftMediumSize=15, ftLargeSize=20, ftExtralarge=24)
When I compile this code, an error occurs with the message:
',' or ')' expected but '=' found
How can I recompile this code in Delphi 5?