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

Method buildCastOperators

astyle/src/ASResource.cpp:222–228  ·  view source on GitHub ↗

* Build the vector of C++ cast operators. * Used by ONLY ASFormatter.cpp * * @param castOperators a reference to the vector to be built. */

Source from the content-addressed store, hash-verified

220 * @param castOperators a reference to the vector to be built.
221 */
222void ASResource::buildCastOperators(vector<const string*>* castOperators)
223{
224 castOperators->push_back(&AS_CONST_CAST);
225 castOperators->push_back(&AS_DYNAMIC_CAST);
226 castOperators->push_back(&AS_REINTERPRET_CAST);
227 castOperators->push_back(&AS_STATIC_CAST);
228}
229
230/**
231 * Build the vector of header words.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected