* delete a braceTypeStack vector object * BraceTypeStack did not work with the DeleteContainer template */
| 5455 | * BraceTypeStack did not work with the DeleteContainer template |
| 5456 | */ |
| 5457 | void ASFormatter::deleteContainer(vector<BraceType>*& container) |
| 5458 | { |
| 5459 | if (container != nullptr) |
| 5460 | { |
| 5461 | container->clear(); |
| 5462 | delete (container); |
| 5463 | container = nullptr; |
| 5464 | } |
| 5465 | } |
| 5466 | |
| 5467 | /** |
| 5468 | * delete a vector object |