rtl-generics: Change visibility of method TDeamortizedDArrayCuckooMap<CUCKOO_CONSTRAINTS>.UpdateItemsThreshold from private to protected

git-svn-id: trunk@35606 -
This commit is contained in:
maciej-izak 2017-03-16 13:41:08 +00:00
parent 984f9ff25e
commit e089e19a7d

View File

@ -360,11 +360,11 @@ type
// CUCKOO_MAX_ITEMS_LENGTH: <- to do : calc max length for items based on CUCKOO sign
// maybe some CDM bloom filter?
procedure UpdateItemsThreshold(ASize: SizeInt); override;
procedure Resize(ANewSize: SizeInt);
procedure Rehash(ASizePow2: SizeInt);
function PrepareAddingItem: SizeInt;
protected
procedure UpdateItemsThreshold(ASize: SizeInt); override;
function Lookup(constref AKey: TKey; var AHashListOrIndex: PUInt32): SizeInt; inline; overload;
function Lookup(constref AItems: TItemsDArray; constref AKey: TKey; var AHashListOrIndex: PUInt32): SizeInt; virtual; overload;
public