| 1453 | */ |
| 1454 | template<typename T> |
| 1455 | void ASBeautifier::initContainer(T &container, T value) |
| 1456 | { |
| 1457 | // since the ASFormatter object is never deleted, |
| 1458 | // the existing vectors must be deleted before creating new ones |
| 1459 | if (container != NULL ) |
| 1460 | deleteContainer(container); |
| 1461 | container = value; |
| 1462 | } |
| 1463 | |
| 1464 | /** |
| 1465 | * Initialize the tempStacks vector object. |
nothing calls this directly
no outgoing calls
no test coverage detected