| 3833 | { |
| 3834 | template<typename string_type> |
| 3835 | void int_to_string(string_type& target, std::size_t value) |
| 3836 | { |
| 3837 | // For ADL |
| 3838 | using std::to_string; |
| 3839 | target = to_string(value); |
| 3840 | } |
| 3841 | template<typename IteratorType> class iteration_proxy_value |
| 3842 | { |
| 3843 | public: |
no outgoing calls
no test coverage detected