Skip to content
Snippets Groups Projects
Verified Commit 92ce6f10 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

MATLAB compatibility fix: R2014a is 8.3, not 8.4

(cherry picked from commit 048564c9)
parent 8b1a0122
Branches
Tags
1 merge request!1815WIP Cherry-picks for 4.6
......@@ -16,7 +16,7 @@ function dynareroot = dynare_config(path_to_dynare)
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2001-2019 Dynare Team
% Copyright (C) 2001-2020 Dynare Team
%
% This file is part of Dynare.
%
......@@ -138,7 +138,7 @@ if ~isoctave && matlab_ver_less_than('7.11')
end
%% isdiag is missing in MATLAB < R2014a
if ~isoctave && matlab_ver_less_than('8.4')
if ~isoctave && matlab_ver_less_than('8.3')
p{end+1} = '/missing/isdiag';
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment