aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/objects/nbostream
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-02-23 11:18:54 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-02-23 11:18:54 +0000
commit6b459c3a0f7f2e216e9fe5f26b73f877463f48e3 (patch)
treec1597261e440f975295a4ce6f6e99e72125d3e78 /vespalib/src/tests/objects/nbostream
parent97bd34b18654d176872ae7cfbfbee3b3e6e9b964 (diff)
Unbreak factory (vespalib)
Diffstat (limited to 'vespalib/src/tests/objects/nbostream')
-rw-r--r--vespalib/src/tests/objects/nbostream/nbostream_test.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/vespalib/src/tests/objects/nbostream/nbostream_test.cpp b/vespalib/src/tests/objects/nbostream/nbostream_test.cpp
index 38c843e170b..3fedc48563d 100644
--- a/vespalib/src/tests/objects/nbostream/nbostream_test.cpp
+++ b/vespalib/src/tests/objects/nbostream/nbostream_test.cpp
@@ -24,14 +24,6 @@ std::ostream &operator<<(std::ostream &out, const std::vector<uint8_t> &rhs)
return out;
}
-template <typename T, typename U>
-std::ostream &operator<<(std::ostream &out, const std::pair<T, U> &rhs)
-{
- out << "{ " << rhs.first << ", " << rhs.second << " }";
- return out;
-}
-
-
template <typename T>
std::ostream &
operator<<(std::ostream &os, const vespalib::Array<T> &set)