| 1705 | |
| 1706 | template<typename T, typename Allocator> |
| 1707 | std::string toString( std::vector<T,Allocator> const& v ) { |
| 1708 | return Detail::rangeToString( v.begin(), v.end() ); |
| 1709 | } |
| 1710 | |
| 1711 | #ifdef CATCH_CONFIG_CPP11_TUPLE |
| 1712 |
no test coverage detected