Browse Source

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

git-svn-id: trunk@35606 -
maciej-izak 8 years ago
parent
commit
e089e19a7d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl-generics/src/inc/generics.dictionariesh.inc

+ 1 - 1
packages/rtl-generics/src/inc/generics.dictionariesh.inc

@@ -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