| 1660 | |
| 1661 | template<typename T, typename Allocator> |
| 1662 | std::string toString( std::vector<T,Allocator> const& v ) { |
| 1663 | return Detail::rangeToString( v.begin(), v.end() ); |
| 1664 | } |
| 1665 | |
| 1666 | #ifdef CATCH_CONFIG_CPP11_TUPLE |
| 1667 |
no test coverage detected