Octave compatibility: ignore new warning introduced for qz() in Octave 9

Should have been in commit 421eb1482c.
mr#2134
Sébastien Villemot 2023-04-26 10:28:22 +02:00
parent 79477e5ba6
commit 8bb9a398aa
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ function warning_config()
% SPECIAL REQUIREMENTS
% none
% Copyright © 2008-2022 Dynare Team
% Copyright © 2008-2023 Dynare Team
%
% This file is part of Dynare.
%
@ -49,6 +49,7 @@ if isoctave
warning('off', 'Octave:fortran-indexing');
warning('off', 'Octave:classdef-to-struct');
warning('off', 'Octave:legacy-function'); % For strmatch and isdir
warning('off', 'Octave:qz:complex-default'); % Will likely be remove in Octave 11
% The following is necessary because of matlab/pac-tools/+pac/+bgp/{get,set}.m
% which triggers this bug: https://savannah.gnu.org/bugs/?46849