The second parameter of hash_set is the default, remove it.

llvm-svn: 3273
This commit is contained in:
Chris Lattner 2002-08-09 19:40:42 +00:00
parent e5b0f6574b
commit 06524e2f07
1 changed files with 2 additions and 2 deletions

View File

@ -356,8 +356,8 @@ private:
// Cast nodes, and Calls. This graph can only be used by one of the // 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. // individual function graphs, and it goes away when they all go away.
// //
class GlobalDSGraph: public DSGraph { class GlobalDSGraph : public DSGraph {
hash_set<const DSGraph*, hash<const DSGraph*> > Referrers; hash_set<const DSGraph*> Referrers;
void addReference(const DSGraph* referrer); void addReference(const DSGraph* referrer);
void removeReference(const DSGraph* referrer); void removeReference(const DSGraph* referrer);
friend class DSGraph; // give access to Referrers friend class DSGraph; // give access to Referrers