Another attempt fix the Windows builds
authorKristof Beyls <kristof.beyls@arm.com>
Thu, 30 Mar 2017 10:47:41 +0000 (10:47 +0000)
committerKristof Beyls <kristof.beyls@arm.com>
Thu, 30 Mar 2017 10:47:41 +0000 (10:47 +0000)
By changing more detail::... to llvm::detail::...

llvm-svn: 299065

llvm/include/llvm/ADT/DenseSet.h

index a89d2fa..8d7d613 100644 (file)
@@ -179,12 +179,12 @@ public:
   void erase(ConstIterator CI) { return TheMap.erase(CI.I); }
 
   std::pair<iterator, bool> insert(const ValueT &V) {
-    detail::DenseSetEmpty Empty;
+    llvm::detail::DenseSetEmpty Empty;
     return TheMap.try_emplace(V, Empty);
   }
 
   std::pair<iterator, bool> insert(ValueT &&V) {
-    detail::DenseSetEmpty Empty;
+    llvm::detail::DenseSetEmpty Empty;
     return TheMap.try_emplace(std::move(V), Empty);
   }
 
@@ -193,11 +193,12 @@ public:
   template <typename LookupKeyT>
   std::pair<iterator, bool> insert_as(const ValueT &V,
                                       const LookupKeyT &LookupKey) {
-    return TheMap.insert_as({V, detail::DenseSetEmpty()}, LookupKey);
+    return TheMap.insert_as({V, llvm::detail::DenseSetEmpty()}, LookupKey);
   }
   template <typename LookupKeyT>
   std::pair<iterator, bool> insert_as(ValueT &&V, const LookupKeyT &LookupKey) {
-    return TheMap.insert_as({std::move(V), detail::DenseSetEmpty()}, LookupKey);
+    return TheMap.insert_as({std::move(V), llvm::detail::DenseSetEmpty()},
+                            LookupKey);
   }
 
   // Range insertion of values.