extended-preprocessor: finished removing c_driver mechanism

issue#70
Michel Juillard 2013-08-14 21:35:06 +02:00
parent 2e7afdb22b
commit 71824b3d4c
2 changed files with 1 additions and 7 deletions

View File

@ -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

View File

@ -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;