From d6e801cac80409b05b1563be9d15fcc9e5c18303 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Thu, 9 Feb 2017 16:21:18 +0100 Subject: [PATCH] =?UTF-8?q?preprocessor:=20change=20error=20to=20warning?= =?UTF-8?q?=20because=20we=20don=E2=80=99t=20end=20processing=20in=20this?= =?UTF-8?q?=20situation;=20fix=20error=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ComputingTasks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ComputingTasks.cc b/ComputingTasks.cc index ca83e94e..9843ba7d 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -1058,7 +1058,7 @@ ObservationTrendsStatement::writeOutput(ostream &output, const string &basename, output << "';" << endl; } else - cout << "Error : Non-variable symbol used in TREND_COEFF: " << it->first << endl; + cerr << "Warning : Non-variable symbol used in observation_trends: " << it->first << endl; } }