From 8bb9a398aafdd12ca8558d345df28ff4d4836e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Wed, 26 Apr 2023 10:28:22 +0200 Subject: [PATCH] Octave compatibility: ignore new warning introduced for qz() in Octave 9 Should have been in commit 421eb1482c319d50b5f51b8f52359d2f0fbaa5e4. --- matlab/warning_config.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/matlab/warning_config.m b/matlab/warning_config.m index 8f403fbef..a195a773d 100644 --- a/matlab/warning_config.m +++ b/matlab/warning_config.m @@ -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