From e7f092a56f94d9ef01810fcf650efd5e94a1d911 Mon Sep 17 00:00:00 2001 From: Alexis Montoison <35051714+amontoison@users.noreply.github.com> Date: Sun, 28 Jan 2024 11:52:37 -0500 Subject: [PATCH] Update check_macros.jl --- .github/julia/check_macros.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/julia/check_macros.jl b/.github/julia/check_macros.jl index 29fe43a1f1..b15ec2e959 100644 --- a/.github/julia/check_macros.jl +++ b/.github/julia/check_macros.jl @@ -13,7 +13,7 @@ function append_macros!(macros::Dict{String,String}, path::String) for line in lines if startswith(line, "#define") tab = split(line, " ") - macros[tab[2]] = tab[3] + macros[tab[2]] = tab[end] end end return macros