| 86 | } |
| 87 | |
| 88 | static void checkFormat(int num) |
| 89 | { |
| 90 | for (int idx = 0; idx < num; ++idx) |
| 91 | { |
| 92 | int i = 42; |
| 93 | double d = 7.7; |
| 94 | auto s = std::format("{} {}", i, d); |
| 95 | if (num == 1) |
| 96 | { |
| 97 | std::cout << s << '\n'; |
| 98 | return; |
| 99 | } |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | static void checkFormatTo(int num) |
| 104 | { |
nothing calls this directly
no outgoing calls
no test coverage detected