From c34bfe4003ebb91d8c93614d6418dd672d211a2a Mon Sep 17 00:00:00 2001 From: Mitchell Hanberg Date: Thu, 13 Jun 2024 10:03:39 -0400 Subject: [PATCH] fix: compiler warning in private compiler --- priv/monkey/_next_ls_private_compiler.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/priv/monkey/_next_ls_private_compiler.ex b/priv/monkey/_next_ls_private_compiler.ex index d6bce866..f802a2ff 100644 --- a/priv/monkey/_next_ls_private_compiler.ex +++ b/priv/monkey/_next_ls_private_compiler.ex @@ -1565,7 +1565,7 @@ if Version.match?(System.version(), ">= 1.17.0-dev") do env end - {res, state, env} = expand(block, state, env) + {res, state, _env} = expand(block, state, env) {[{type, res} | acc], state} end