fpexif: Fix compilation down to Laz 1.2

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6131 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-01-13 15:09:34 +00:00
parent 37bb56a6cd
commit 1e2bcbe532
4 changed files with 6 additions and 2 deletions

View File

@ -20,6 +20,11 @@ uses
type
{$IFDEF FPC}
{$IF FPC_FULLVERSION < 3000200}
TStringArray = array of string;
{$ENDIF}
TInt64List = specialize TFPGList<int64>;
{$ELSE}
TInt64List = class(TList)