| 115 | |
| 116 | TORRENT_FORMAT(2,3) |
| 117 | allocation_slot format_string_helper(stack_allocator& stack, char const* fmt, ...) |
| 118 | { |
| 119 | va_list v; |
| 120 | va_start(v, fmt); |
| 121 | auto const ret = stack.format_string(fmt, v); |
| 122 | va_end(v); |
| 123 | return ret; |
| 124 | } |
| 125 | |
| 126 | } |
| 127 |
no test coverage detected