| 167 | } |
| 168 | |
| 169 | void LexerManager::Clear() { |
| 170 | if (NULL != first) { |
| 171 | LexerLibrary *cur = first; |
| 172 | LexerLibrary *next; |
| 173 | while (cur) { |
| 174 | next = cur->next; |
| 175 | delete cur; |
| 176 | cur = next; |
| 177 | } |
| 178 | first = NULL; |
| 179 | last = NULL; |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | //------------------------------------------ |
| 184 | // |
nothing calls this directly
no outgoing calls
no test coverage detected