| 5106 | |
| 5107 | template<typename string_type> |
| 5108 | void int_to_string( string_type& target, std::size_t value ) |
| 5109 | { |
| 5110 | // For ADL |
| 5111 | using std::to_string; |
| 5112 | target = to_string(value); |
| 5113 | } |
| 5114 | template<typename IteratorType> class iteration_proxy_value |
| 5115 | { |
| 5116 | public: |
no test coverage detected