preprocessor: remove unnecessary cloneAndReindexSymbIds method

issue#70
Houtan Bastani 2015-04-09 16:14:25 +02:00
parent cb08675696
commit 3deea8367d
2 changed files with 0 additions and 8 deletions

View File

@ -543,10 +543,3 @@ LoadParamsAndSteadyStateStatement::fillEvalContext(eval_context_t &eval_context)
it != content.end(); it++)
eval_context[it->first] = atof(it->second.c_str());
}
Statement *
LoadParamsAndSteadyStateStatement::cloneAndReindexSymbIds(DataTree &dynamic_datatree, SymbolTable &orig_symbol_table)
{
WarningConsolidation warnings(false);
return new LoadParamsAndSteadyStateStatement(filename, *(dynamic_datatree.getSymbolTable()), warnings);
}

View File

@ -174,7 +174,6 @@ public:
virtual void writeOutput(ostream &output, const string &basename) const;
//! Fill eval context with parameters/variables values
void fillEvalContext(eval_context_t &eval_context) const;
virtual Statement *cloneAndReindexSymbIds(DataTree &dynamic_datatree, SymbolTable &orig_symbol_table);
};
#endif