mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 05:39:26 +02:00
* made some fields in fgl.pp private as proposed by Michalis Kamburelis, resolves #19873
git-svn-id: trunk@18210 -
This commit is contained in:
parent
63403e5199
commit
3787ed993c
@ -100,7 +100,7 @@ type
|
||||
end;
|
||||
|
||||
generic TFPGList<T> = class(TFPSList)
|
||||
public
|
||||
private
|
||||
type
|
||||
TCompareFunc = function(const Item1, Item2: T): Integer;
|
||||
TTypeList = array[0..MaxGListSize] of T;
|
||||
@ -134,7 +134,7 @@ type
|
||||
end;
|
||||
|
||||
generic TFPGObjectList<T> = class(TFPSList)
|
||||
public
|
||||
private
|
||||
type
|
||||
TCompareFunc = function(const Item1, Item2: T): Integer;
|
||||
TTypeList = array[0..MaxGListSize] of T;
|
||||
@ -170,7 +170,7 @@ type
|
||||
end;
|
||||
|
||||
generic TFPGInterfacedObjectList<T> = class(TFPSList)
|
||||
public
|
||||
private
|
||||
type
|
||||
TCompareFunc = function(const Item1, Item2: T): Integer;
|
||||
TTypeList = array[0..MaxGListSize] of T;
|
||||
@ -254,7 +254,7 @@ type
|
||||
end;
|
||||
|
||||
generic TFPGMap<TKey, TData> = class(TFPSMap)
|
||||
public
|
||||
private
|
||||
type
|
||||
TKeyCompareFunc = function(const Key1, Key2: TKey): Integer;
|
||||
TDataCompareFunc = function(const Data1, Data2: TData): Integer;
|
||||
@ -299,7 +299,7 @@ type
|
||||
end;
|
||||
|
||||
generic TFPGMapInterfacedObjectData<TKey, TData> = class(TFPSMap)
|
||||
public
|
||||
private
|
||||
type
|
||||
TKeyCompareFunc = function(const Key1, Key2: TKey): Integer;
|
||||
TDataCompareFunc = function(const Data1, Data2: TData): Integer;
|
||||
|
Loading…
Reference in New Issue
Block a user