Destructor for LogMessage
| 497 | |
| 498 | // Destructor for LogMessage |
| 499 | Log::LogMessage::~LogMessage() { |
| 500 | if (rawArgsExtension != nullptr) { |
| 501 | free(rawArgsExtension); |
| 502 | rawArgsExtension = nullptr; |
| 503 | totalCapacity = INITIAL_SIZE; |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | /** |
| 508 | * Reserve/Allocate enough space for N parameters in the structure |
nothing calls this directly
no outgoing calls
no test coverage detected