aboutsummaryrefslogtreecommitdiff
path: root/common/query/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/query/test.hxx')
-rw-r--r--common/query/test.hxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/common/query/test.hxx b/common/query/test.hxx
index db09f32..eab7048 100644
--- a/common/query/test.hxx
+++ b/common/query/test.hxx
@@ -74,16 +74,6 @@ operator<< (std::ostream& os, const person& p)
os << ' ' << p.last_name_ << ' ' << p.age_ <<
(p.married_ ? " married" : " single");
- if (p.public_key_ && p.public_key_->size () > 0)
- {
- os << ' ';
-
- for (std::size_t i (0), e (p.public_key_->size () - 1); i < e; ++i)
- os << (unsigned int)(*p.public_key_)[i] << '-';
-
- os << (unsigned int)p.public_key_->back ();
- }
-
return os;
}