| 5177 | |
| 5178 | template<typename string_type> |
| 5179 | void int_to_string( string_type& target, std::size_t value ) |
| 5180 | { |
| 5181 | // For ADL |
| 5182 | using std::to_string; |
| 5183 | target = to_string(value); |
| 5184 | } |
| 5185 | template<typename IteratorType> class iteration_proxy_value |
| 5186 | { |
| 5187 | public: |
no test coverage detected