MCPcopy Create free account
hub / github.com/dirkvranckaert/AndroidDecompiler / initTempStacksContainer

Method initTempStacksContainer

astyle/src/ASBeautifier.cpp:1469–1475  ·  view source on GitHub ↗

* Initialize the tempStacks vector object. * The tempStacks is a vector of pointers to strings allocated with the 'new' operator. * Any residual entries are deleted before the vector is initialized. */

Source from the content-addressed store, hash-verified

1467 * Any residual entries are deleted before the vector is initialized.
1468 */
1469void ASBeautifier::initTempStacksContainer(vector<vector<const string*>*>* &container,
1470 vector<vector<const string*>*>* value)
1471{
1472 if (container != NULL)
1473 deleteTempStacksContainer(container);
1474 container = value;
1475}
1476
1477/**
1478 * Determine if an assignment statement ends with a comma

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected