From 48f38af576eb372c140cea9444f03cb79bfc220d Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Sat, 24 Dec 2011 17:23:25 +0100 Subject: [PATCH] fix typo --- preprocessor/ComputingTasks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocessor/ComputingTasks.cc b/preprocessor/ComputingTasks.cc index 08740ebca..fb6a90a3d 100644 --- a/preprocessor/ComputingTasks.cc +++ b/preprocessor/ComputingTasks.cc @@ -1358,7 +1358,7 @@ MarkovSwitchingStatement::MarkovSwitchingStatement(const OptionsList &options_li options_list.num_options.find("ms.number_of_regimes"); if (it_num_regimes == options_list.num_options.end()) { - cerr << "ERROR: should not arrive here: MarkovSwitchingStatement::checkPass" << endl; + cerr << "ERROR: should not arrive here: MarkovSwitchingStatement constructor" << endl; exit(EXIT_FAILURE); } int num_regimes = lexical_cast< int >(it_num_regimes->second);