* Free allocated topic map pointers */
| 442 | * Free allocated topic map pointers |
| 443 | */ |
| 444 | void KafkaTopicSelector::freeTopicMap() { |
| 445 | // Free topic pointers |
| 446 | for (topic_map::iterator it = topic.begin(); it != topic.end(); it++) { |
| 447 | if (it->second) { |
| 448 | delete it->second; |
| 449 | it->second = NULL; |
| 450 | } |
| 451 | } |
| 452 | } |
nothing calls this directly
no outgoing calls
no test coverage detected