bug_fix: add initializations for modfilestructure bools

time-shift
Houtan Bastani 2012-01-03 15:59:10 +01:00
parent 11da21c7b2
commit 7ec25ee27e
1 changed files with 8 additions and 1 deletions

View File

@ -43,7 +43,14 @@ ModFileStructure::ModFileStructure() :
dsge_prior_weight_in_estimated_params(false),
dsge_var_calibrated(""),
dsge_var_estimated(false),
bayesian_irf_present(false)
bayesian_irf_present(false),
estimation_data_statement_present(false),
prior_statement_present(false),
std_prior_statement_present(false),
corr_prior_statement_present(false),
options_statement_present(false),
std_options_statement_present(false),
corr_options_statement_present(false)
{
}