| 8 | #include <vector> |
| 9 | |
| 10 | int main() |
| 11 | { |
| 12 | std::vector<char> buffer{}; |
| 13 | std::format_to( |
| 14 | std::back_inserter(buffer), "{}, {}", "Hello", "World"); |
| 15 | |
| 16 | for(const auto& c : buffer) { std::cout << c; } |
| 17 | |
| 18 | std::cout << '\n'; |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected