From ca47896204482bf4a6979e3838bf7f09f61cebeb Mon Sep 17 00:00:00 2001 From: giy <giy@omp-system.ru> Date: Fri, 02 Sep 2022 14:16:56 +0300 Subject: [PATCH] Обновление до версии 2.9.0 --- QtVsTools.RegExpr/production/ProductionRuleAction.cs | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/QtVsTools.RegExpr/production/ProductionRuleAction.cs b/QtVsTools.RegExpr/production/ProductionRuleAction.cs index 71662d8..7d7a2e0 100644 --- a/QtVsTools.RegExpr/production/ProductionRuleAction.cs +++ b/QtVsTools.RegExpr/production/ProductionRuleAction.cs @@ -135,11 +135,9 @@ public bool Execute(ref T prod, string value, params object[] operands) { int idx = 0; - T1 x; - T2 y; - if (!GetOperand(out x, operands, ref idx)) + if (!GetOperand(out T1 x, operands, ref idx)) return false; - if (!GetOperand(out y, operands, ref idx)) + if (!GetOperand(out T2 y, operands, ref idx)) return false; if (!TestAssert(prod, value, x, y)) -- Gitblit v1.9.1