| 51 | } |
| 52 | |
| 53 | static void checkToString(int num) |
| 54 | { |
| 55 | for (int idx = 0; idx < num; ++idx) |
| 56 | { |
| 57 | int i = 42; |
| 58 | double d = 7.7; |
| 59 | std::string s = std::to_string(i) + ' ' + std::to_string(d); |
| 60 | if (num == 1) |
| 61 | { |
| 62 | std::cout << s << '\n'; |
| 63 | return; |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | static void checkToChars(int num) |
| 69 | { |
nothing calls this directly
no outgoing calls
no test coverage detected