Fix wrong initialization of trend_coeff in preprocessor/ComputingTasks.cc

issue#70
Johannes Pfeifer 2015-03-01 14:22:45 +01:00 committed by Johannes Pfeifer
parent e9f9aa2184
commit 0c0ea326ce
1 changed files with 1 additions and 1 deletions

View File

@ -1014,7 +1014,7 @@ ObservationTrendsStatement::ObservationTrendsStatement(const trend_elements_t &t
void
ObservationTrendsStatement::writeOutput(ostream &output, const string &basename, bool minimal_workspace) const
{
output << "options_.trend_coeff_ = {};" << endl;
output << "options_.trend_coeff = {};" << endl;
trend_elements_t::const_iterator it;