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 | c437bd577f2ba29934b22816731ac996790d0d39 (patch) | |
tree | 3f543ad72847716b7d38801868e906b5d0194d7f /unittests | |
parent | b33f8e3e55932d0e15a686ef0c598da8dbc37acd (diff) |
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.cpp | 17 |
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; |