* Build the vector of C++ cast operators. * Used by ONLY ASFormatter.cpp * * @param castOperators a reference to the vector to be built. */
| 220 | * @param castOperators a reference to the vector to be built. |
| 221 | */ |
| 222 | void 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. |
nothing calls this directly
no outgoing calls
no test coverage detected