diff options
author | Jay Foad <jay.foad@gmail.com> | 2011-07-27 09:26:13 +0000 |
---|---|---|
committer | Jay Foad <jay.foad@gmail.com> | 2011-07-27 09:26:13 +0000 |
commit | 4b27333440d31c9edede777471ba371f75431160 (patch) | |
tree | 7618b824c5b7e61c04a7878f1a67be9712caee60 /llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp | |
parent | 22a83d667e9f8b63795c6bddad57641ff5c0bf8e (diff) | |
download | llvm-4b27333440d31c9edede777471ba371f75431160.zip llvm-4b27333440d31c9edede777471ba371f75431160.tar.gz llvm-4b27333440d31c9edede777471ba371f75431160.tar.bz2 |
Remove some code that is no longer needed now that googletest knows how
to print STL containers.
llvm-svn: 136213
Diffstat (limited to 'llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp b/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp index b90e0c7..370b7c2 100644 --- a/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp +++ b/llvm/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; |