mirror of https://github.com/PCSX2/pcsx2.git
Remove the pxDictionary class since it is no longer needed.
This was only used by the game database, which has now been changed to an unordered_map
This commit is contained in:
parent
2c6188b73f
commit
79dd0958d0
|
@ -682,15 +682,3 @@ public:
|
|||
};
|
||||
|
||||
}
|
||||
|
||||
template< class T, class HashFunctor=HashTools::CommonHashClass >
|
||||
class pxDictionary : public HashTools::HashMap<wxString, T, HashFunctor>
|
||||
{
|
||||
public:
|
||||
virtual ~pxDictionary() {}
|
||||
|
||||
pxDictionary( int initialCapacity=33, const wxString& emptyKey = L"@@-EMPTY-@@", const wxString& deletedKey = L"@@-DELETED-@@" )
|
||||
: HashTools::HashMap<wxString, T, HashFunctor>( emptyKey, deletedKey, initialCapacity)
|
||||
{
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue