diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-09 19:40:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-09 19:40:42 +0000 |
commit | 06524e2f07ea4f8a04231acd62594edfde6c9611 (patch) | |
tree | 87c98179569dd4436898c29c6c2db87731e853bc | |
parent | e5b0f6574b298e0d0bc67d4f4408eb050738314a (diff) | |
download | bcm5719-llvm-06524e2f07ea4f8a04231acd62594edfde6c9611.tar.gz bcm5719-llvm-06524e2f07ea4f8a04231acd62594edfde6c9611.zip |
The second parameter of hash_set is the default, remove it.
llvm-svn: 3273
-rw-r--r-- | llvm/include/llvm/Analysis/DataStructure.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Analysis/DataStructure.h b/llvm/include/llvm/Analysis/DataStructure.h index 54ea1f9d060..cabefb95d51 100644 --- a/llvm/include/llvm/Analysis/DataStructure.h +++ b/llvm/include/llvm/Analysis/DataStructure.h @@ -356,8 +356,8 @@ private: // Cast nodes, and Calls. This graph can only be used by one of the // individual function graphs, and it goes away when they all go away. // -class GlobalDSGraph: public DSGraph { - hash_set<const DSGraph*, hash<const DSGraph*> > Referrers; +class GlobalDSGraph : public DSGraph { + hash_set<const DSGraph*> Referrers; void addReference(const DSGraph* referrer); void removeReference(const DSGraph* referrer); friend class DSGraph; // give access to Referrers |