preprocessor: remove unnecessary cloneAndReindexSymbIds method

time-shift
Houtan Bastani 2015-04-09 16:14:25 +02:00
parent 4d8e0c7f3b
commit 1f58e0cc64
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