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