diff options
-rw-r--r-- | include/llvm/Analysis/DataStructure.h | 4 | ||||
-rw-r--r-- | include/llvm/Analysis/DataStructure/DataStructure.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/DataStructure.h b/include/llvm/Analysis/DataStructure.h index 54ea1f9d06..cabefb95d5 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<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 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 |