From 71824b3d4c5ffa2da3e6603cf9bf4e810c364cfc Mon Sep 17 00:00:00 2001 From: Michel Juillard <michel.juillard@mjui.fr> Date: Wed, 14 Aug 2013 21:35:06 +0200 Subject: [PATCH] extended-preprocessor: finished removing c_driver mechanism --- ModFile.cc | 5 +---- ModFile.hh | 3 --- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/ModFile.cc b/ModFile.cc index aa23a422..954e02b6 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -40,7 +40,7 @@ ModFile::ModFile(WarningConsolidation &warnings_arg) linear(false), block(false), byte_code(false), use_dll(false), no_static(false), differentiate_forward_vars(false), nonstationary_variables(false), ramsey_policy_orig_eqn_nbr(0), - warnings(warnings_arg), c_driver(false) + warnings(warnings_arg) { } @@ -444,9 +444,6 @@ ModFile::transformPass(bool nostrict) << "greater than or equal to the number of observed variables." << endl; exit(EXIT_FAILURE); } - - if (mod_file_struct.ms_dsge_present) - c_driver = true; } void diff --git a/ModFile.hh b/ModFile.hh index 741dc531..5e4f01de 100644 --- a/ModFile.hh +++ b/ModFile.hh @@ -100,9 +100,6 @@ public: /*! (i.e. option parallel_local_files of model block) */ vector<string> parallel_local_files; - //! Output C driver file as opposed to Matlab/Octave driver file - bool c_driver; - private: //! List of statements vector<Statement *> statements; -- GitLab