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 | 5b2f502968b67a5b5ab24335734466fb9eec6aab (patch) | |
tree | 8d6ae1cf67db8a34facf668fd50e156c09c180bb /include/llvm/Analysis/DataStructure/DataStructure.h | |
parent | 43db05a81c1aad69e1d2394f14e5c9dbbe50e2e9 (diff) |
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
Diffstat (limited to 'include/llvm/Analysis/DataStructure/DataStructure.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure/DataStructure.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/DataStructure/DataStructure.h b/include/llvm/Analysis/DataStructure/DataStructure.h index 54ea1f9d06..cabefb95d5 100644 --- a/include/llvm/Analysis/DataStructure/DataStructure.h +++ b/include/llvm/Analysis/DataStructure/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 |