bug_fix: add initializations for modfilestructure bools

issue#70
Houtan Bastani 2012-01-03 15:59:10 +01:00
parent 633eb15f9a
commit 5f88294bff
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)
{
}