summaryrefslogtreecommitdiff
path: root/src/vm/eehash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/eehash.h')
-rw-r--r--src/vm/eehash.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/vm/eehash.h b/src/vm/eehash.h
index 8e92ad35d9..21b651c063 100644
--- a/src/vm/eehash.h
+++ b/src/vm/eehash.h
@@ -38,11 +38,8 @@ class AllocMemTracker;
class ClassLoader;
struct LockOwner;
class NameHandle;
-struct PsetCacheKey;
class SigTypeContext;
-typedef PsetCacheKey* PPsetCacheKey;
-
// The "blob" you get to store in the hash table
typedef PTR_VOID HashDatum;
@@ -481,20 +478,6 @@ public:
typedef EEHashTable<EEStringData *, EEUnicodeStringLiteralHashTableHelper, TRUE> EEUnicodeStringLiteralHashTable;
-// Permission set hash table.
-
-class EEPsetHashTableHelper
-{
-public:
- static EEHashEntry_t * AllocateEntry(PsetCacheKey *pKey, BOOL bDeepCopy, AllocationHeap Heap);
- static void DeleteEntry(EEHashEntry_t *pEntry, AllocationHeap Heap);
- static BOOL CompareKeys(EEHashEntry_t *pEntry, PsetCacheKey *pKey);
- static DWORD Hash(PsetCacheKey *pKey);
- static PsetCacheKey *GetKey(EEHashEntry_t *pEntry);
-};
-
-typedef EEHashTable<PsetCacheKey *, EEPsetHashTableHelper, FALSE> EEPsetHashTable;
-
// Generic pointer hash table helper.