From 98c71e566626564c83c1d770862f8675d4b5b892 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 9 Aug 2002 19:40:42 +0000 Subject: [PATCH] The second parameter of hash_set is the default, remove it. llvm-svn: 3273 --- include/llvm/Analysis/DataStructure.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Analysis/DataStructure.h b/include/llvm/Analysis/DataStructure.h index 54ea1f9d060..cabefb95d51 100644 --- a/include/llvm/Analysis/DataStructure.h +++ b/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 > Referrers; +class GlobalDSGraph : public DSGraph { + hash_set Referrers; void addReference(const DSGraph* referrer); void removeReference(const DSGraph* referrer); friend class DSGraph; // give access to Referrers