Remove HashTools::HashSet.

This is no longer used.
This commit is contained in:
Ryan Houdek 2014-07-15 22:07:03 -05:00
parent 5bd06d3a02
commit abd605a066

View File

@ -440,24 +440,5 @@ public:
}
};
template< typename Key >
class HashSet : public google::dense_hash_set< Key, CommonHashClass >
{
public:
/// <summary>
/// Constructor.
/// </summary>
/// <remarks>
/// Both the <c>emptyKey</c>a nd c>deletedKey</c> parameters must be unique values that
/// are *not* used as actual values in the set.
/// </remarks>
HashSet( Key emptyKey, Key deletedKey, int initialCapacity=33 ) :
google::dense_hash_set<Key, CommonHashClass>( initialCapacity )
{
set_empty_key( emptyKey );
set_deleted_key( deletedKey );
}
};
}