| 3291 | { |
| 3292 | template<typename string_type> |
| 3293 | void int_to_string( string_type& target, std::size_t value ) |
| 3294 | { |
| 3295 | target = std::to_string(value); |
| 3296 | } |
| 3297 | template <typename IteratorType> class iteration_proxy_value |
| 3298 | { |
| 3299 | public: |
no test coverage detected