mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 03:39:28 +02:00
* fixed 64 bit compilation
git-svn-id: trunk@14086 -
This commit is contained in:
parent
b9a8592a11
commit
f339276179
@ -64,7 +64,7 @@ var
|
||||
isProfileBased: 0..1;
|
||||
int: 0..((1 shl 24)-1);
|
||||
{$ifdef cpu64}
|
||||
int: 0..((1 shl 32)-1);
|
||||
int2: 0..((1 shl 32)-1);
|
||||
{$endif}
|
||||
end;
|
||||
__clAuxiliaryStorage: id;
|
||||
|
@ -66,7 +66,7 @@ type
|
||||
replacedDuringUnarchiving: 0..1;
|
||||
int: 0..((1 shl 20)-1);
|
||||
{$ifdef cpu64}
|
||||
int: 0..((1 shl 32)-1);
|
||||
int2: 0..((1 shl 32)-1);
|
||||
{$endif}
|
||||
end;
|
||||
___cgColorSpace: Pointer;
|
||||
|
@ -62,7 +62,7 @@ var
|
||||
int: 0..((1 shl 7)-1);
|
||||
disabled: 0..((1 shl 16)-1);
|
||||
{$ifdef cpu64}
|
||||
int: 0..((1 shl 32)-1);
|
||||
int2: 0..((1 shl 32)-1);
|
||||
{$endif}
|
||||
end;
|
||||
__layoutManagers: NSMutableArray;
|
||||
|
Loading…
Reference in New Issue
Block a user