summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorJay Foad <jay.foad@gmail.com>2011-07-27 09:26:13 +0000
committerJay Foad <jay.foad@gmail.com>2011-07-27 09:26:13 +0000
commitc437bd577f2ba29934b22816731ac996790d0d39 (patch)
tree3f543ad72847716b7d38801868e906b5d0194d7f /unittests
parentb33f8e3e55932d0e15a686ef0c598da8dbc37acd (diff)
downloadllvm-c437bd577f2ba29934b22816731ac996790d0d39.tar.gz
llvm-c437bd577f2ba29934b22816731ac996790d0d39.tar.bz2
llvm-c437bd577f2ba29934b22816731ac996790d0d39.tar.xz
Remove some code that is no longer needed now that googletest knows how
to print STL containers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136213 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/ADT/DAGDeltaAlgorithmTest.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/unittests/ADT/DAGDeltaAlgorithmTest.cpp b/unittests/ADT/DAGDeltaAlgorithmTest.cpp
index b90e0c7fc2..370b7c20a0 100644
--- a/unittests/ADT/DAGDeltaAlgorithmTest.cpp
+++ b/unittests/ADT/DAGDeltaAlgorithmTest.cpp
@@ -13,23 +13,6 @@
#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;