Explicitly default DenseMapTest::CtorTest::operator=
[oota-llvm.git] / unittests / ADT / DAGDeltaAlgorithmTest.cpp
index b90e0c7fc23113213257ffa44d9bb9baa7f02a8a..370b7c20a0934062bcc2c9bf5fa873be8cc6afe6 100644 (file)
 #include <cstdarg>
 using namespace llvm;
 
-namespace std {
-
-static std::ostream &operator<<(std::ostream &OS,
-                         const std::set<unsigned> &S) {
-  OS << "{";
-  for (std::set<unsigned>::const_iterator it = S.begin(),
-         ie = S.end(); it != ie; ++it) {
-    if (it != S.begin())
-      OS << ",";
-    OS << *it;
-  }
-  OS << "}";
-  return OS;
-}
-
-}
-
 namespace {
 
 typedef DAGDeltaAlgorithm::edge_ty edge_ty;