disable value semantics
| 119 | ~Cli() = default; |
| 120 | // disable value semantics |
| 121 | Cli(const Cli&) = delete; |
| 122 | Cli& operator = (const Cli&) = delete; |
| 123 | // enable move semantics |
| 124 | Cli(Cli&&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected