passing by pointer
| 55 | // NOLINTNEXTLINE(readability-non-const-parameter) Deliberately non-const for testing |
| 56 | void add9(int *other) { value += *other; } // passing by pointer |
| 57 | void add10(const int *other) { value += *other; } // passing by const pointer |
| 58 | |
| 59 | void consume_str(std::string &&) {} |
| 60 |
no outgoing calls
no test coverage detected