From 9e804d2960986b65374b257ea899b3a1744b86b3 Mon Sep 17 00:00:00 2001 From: Shulu Li <65802727+Depetrol@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:35:06 -0700 Subject: [PATCH] fix: unintended change --- test/Cpp/src/ActionWithNoReaction.lf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Cpp/src/ActionWithNoReaction.lf b/test/Cpp/src/ActionWithNoReaction.lf index dafd81dcd9..3dd6e3f236 100644 --- a/test/Cpp/src/ActionWithNoReaction.lf +++ b/test/Cpp/src/ActionWithNoReaction.lf @@ -11,7 +11,7 @@ reactor foo { logical action a reaction(x) -> y, a {= - y.set(2*(*x.undefined_name15291838())); + y.set(2*(*x.get())); a.schedule(500ms); =} }