| 27 | } |
| 28 | |
| 29 | CommandError::~CommandError() { |
| 30 | if (!persistent) cmd_error_destroy(errorPointer); |
| 31 | } |
| 32 | |
| 33 | CommandError& CommandError::operator=(const CommandError& e) { |
| 34 | persistent = e.persistent; |
nothing calls this directly
no test coverage detected