From ee5e86f91eb873fa943b3f833d8950b50f3d16f1 Mon Sep 17 00:00:00 2001 From: michel Date: Fri, 12 Dec 2008 16:36:28 +0000 Subject: [PATCH] corrected typo in preprocessing of exo_det_names git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@2314 ac1d8469-bf42-47a9-8791-bf33cf982152 --- preprocessor/SymbolTable.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocessor/SymbolTable.cc b/preprocessor/SymbolTable.cc index bad452673..b01aaca56 100644 --- a/preprocessor/SymbolTable.cc +++ b/preprocessor/SymbolTable.cc @@ -91,7 +91,7 @@ SymbolTable::writeOutput(ostream &output) const output << "M_.exo_det_names_tex = '" << getTeXNameByID(eExogenousDet, 0) << "';" << endl; for (int id = 1; id < exo_det_nbr; id++) { - output << "M_.exo_det_names = srtvcat(M_.exo_det_names, '" << getNameByID(eExogenousDet, id) << "');" << endl + output << "M_.exo_det_names = strvcat(M_.exo_det_names, '" << getNameByID(eExogenousDet, id) << "');" << endl << "M_.exo_det_names_tex = strvcat(M_.exo_det_names_tex, '" << getTeXNameByID(eExogenousDet, id) << "');" << endl; } }