Skip to content
Snippets Groups Projects
Verified Commit c94401ea authored by Houtan Bastani's avatar Houtan Bastani
Browse files

remove spurious semicolon

parent 42ad1a85
No related branches found
No related tags found
No related merge requests found
Pipeline #539 passed
...@@ -55,7 +55,7 @@ if ~isempty(M_.det_shocks) && options_.periods<max([M_.det_shocks.periods]) ...@@ -55,7 +55,7 @@ if ~isempty(M_.det_shocks) && options_.periods<max([M_.det_shocks.periods])
% Some expected shocks happen after the terminal period. % Some expected shocks happen after the terminal period.
mess = sprintf('Problem with the declaration of the expected shocks:\n'); mess = sprintf('Problem with the declaration of the expected shocks:\n');
for i=1:length(M_.det_shocks) for i=1:length(M_.det_shocks)
if any(M_.det_shocks(i).periods>options_.periods); if any(M_.det_shocks(i).periods>options_.periods)
mess = sprintf('%s\n At least one expected value for %s has been declared after the terminal period.', mess, M_.exo_names{M_.det_shocks(i).exo_id}); mess = sprintf('%s\n At least one expected value for %s has been declared after the terminal period.', mess, M_.exo_names{M_.det_shocks(i).exo_id});
end end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment