| 18 | #include <thread> |
| 19 | |
| 20 | void noisy_function(const std::string &msg, bool flush) { |
| 21 | |
| 22 | std::cout << msg; |
| 23 | if (flush) { |
| 24 | std::cout << std::flush; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | void noisy_funct_dual(const std::string &msg, const std::string &emsg) { |
| 29 | std::cout << msg; |
nothing calls this directly
no outgoing calls
no test coverage detected