mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-10-01 21:09:35 +02:00
IDE: CodeTools, CodeCreation: more integer types for operator comparison.
git-svn-id: trunk@50226 -
This commit is contained in:
parent
9760e976d1
commit
508bcddf07
@ -1118,8 +1118,11 @@ function IntegerTypesOrderList: TTypeAliasOrderList;
|
||||
begin
|
||||
if FIntegerTypesOrderList=nil then
|
||||
FIntegerTypesOrderList:=TTypeAliasOrderList.Create([
|
||||
'Int64', 'QWord', 'SizeInt', 'LongInt', 'LongWord', 'Integer', 'Cardinal',
|
||||
'SmallInt', 'Word', 'ShortInt', 'Byte']);
|
||||
'Int64', 'QWord',
|
||||
'NativeInt', 'IntPtr', 'SizeInt', 'NativeUInt', 'UIntPtr',
|
||||
'Int32', 'Integer', 'LongInt', 'UInt32', 'Cardinal', 'LongWord',
|
||||
'Int16', 'SmallInt', 'UInt16', 'Word',
|
||||
'Int8', 'ShortInt', 'UInt8', 'Byte']);
|
||||
|
||||
Result := FIntegerTypesOrderList;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user