| 254 | // ---------------------------------------------------------------------------- |
| 255 | |
| 256 | void spectrumPolyList::delete_node( spectrumPolyNode **node ) |
| 257 | { |
| 258 | spectrumPolyNode *foo = *node; |
| 259 | *node = (*node)->next; |
| 260 | delete foo; |
| 261 | N--; |
| 262 | } |
| 263 | |
| 264 | // ---------------------------------------------------------------------------- |
| 265 | // Delete all nodes where node->mon is a multiple of m |
no outgoing calls
no test coverage detected