diff --git a/test/unordered/transparent_tests.cpp b/test/unordered/transparent_tests.cpp index 6656e95f..06b2f7a1 100644 --- a/test/unordered/transparent_tests.cpp +++ b/test/unordered/transparent_tests.cpp @@ -24,6 +24,12 @@ struct key int key::count_; +std::ostream& operator<<(std::ostream& os, key const& k) +{ + os << "key { x_: " << k.x_ << " }"; + return os; +} + struct transparent_hasher { typedef void is_transparent;