mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 05:00:26 +00:00
The second parameter of hash_set is the default, remove it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3273 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
43db05a81c
commit
5b2f502968
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user