Remove some code that is no longer needed now that googletest knows how
authorJay Foad <jay.foad@gmail.com>
Wed, 27 Jul 2011 09:26:13 +0000 (09:26 +0000)
committerJay Foad <jay.foad@gmail.com>
Wed, 27 Jul 2011 09:26:13 +0000 (09:26 +0000)
to print STL containers.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136213 91177308-0d34-0410-b5e6-96231b3b80d8

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;