| 224 | } |
| 225 | |
| 226 | void |
| 227 | OutputMgr::OutputHashFuncDef(std::ostream &out) |
| 228 | { |
| 229 | out << "void " << OutputMgr::hash_func_name << "(void)" << std::endl; |
| 230 | out << "{" << std::endl; |
| 231 | |
| 232 | size_t dimen = Variable::GetMaxArrayDimension(*VariableSelector::GetGlobalVariables()); |
| 233 | if (dimen) { |
| 234 | vector <const Variable*> &ctrl_vars = Variable::get_new_ctrl_vars(); |
| 235 | OutputArrayCtrlVars(ctrl_vars, out, dimen, 1); |
| 236 | } |
| 237 | HashGlobalVariables(out); |
| 238 | out << "}" << std::endl; |
| 239 | } |
| 240 | |
| 241 | void |
| 242 | OutputMgr::OutputTail(std::ostream &out) |
nothing calls this directly
no test coverage detected