From 62c93895bfbc5ac104b1da2212fc6c66d7970b48 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Tue, 30 Dec 2014 21:55:43 +0100 Subject: [PATCH] preprocessor: remove unused variables --- DynamicModel.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/DynamicModel.cc b/DynamicModel.cc index 09390ca9..128b809a 100644 --- a/DynamicModel.cc +++ b/DynamicModel.cc @@ -825,7 +825,6 @@ DynamicModel::writeModelEquationsCode(string &file_name, const string &bin_basen //Temporary variables declaration FDIMT_ fdimt(temporary_terms.size()); fdimt.write(code_file, instruction_number); - int other_endo_size = 0; vector exo, exo_det, other_endo; @@ -1104,8 +1103,6 @@ DynamicModel::writeModelEquationsCode_Block(string &file_name, const string &bin unsigned int block_size = getBlockSize(block); unsigned int block_mfs = getBlockMfs(block); unsigned int block_recursive = block_size - block_mfs; - unsigned int block_exo_det_size = exo_det_block[block].size(); - unsigned int block_other_endo_size = other_endo_block[block].size(); int block_max_lag = max_leadlag_block[block].first; int block_max_lead = max_leadlag_block[block].second;