From 66dcb59d2b7de8ceda669e898123da2f9a4d82dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Fri, 3 Nov 2023 15:04:59 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Bytecode:=20fix=20FSTPG3=5F::get?= =?UTF-8?q?=5Flag()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It would return an incorrect result. This had no impact except for debugging information. --- src/Bytecode.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bytecode.hh b/src/Bytecode.hh index 922bf21d..dff9cba3 100644 --- a/src/Bytecode.hh +++ b/src/Bytecode.hh @@ -446,7 +446,7 @@ public: int get_lag() { - return arg2; + return arg3; }; int get_col_pos() -- GitLab