| 318 | std::string post_comment; |
| 319 | |
| 320 | Command(std::stringstream &ss, int depth, std::string command, std::string post_comment) |
| 321 | : ss(ss), depth(depth), command(std::move(command)), post_comment(std::move(post_comment)) { |
| 322 | } |
| 323 | |
| 324 | ~Command() noexcept(false) { |
| 325 | if (!generated) { |
nothing calls this directly
no outgoing calls
no test coverage detected