Skip to content

Commit

Permalink
Update check_macros.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison authored Jan 28, 2024
1 parent 8641b77 commit e7f092a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/julia/check_macros.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e7f092a

Please sign in to comment.