From ada417fad2f2fdb0a73903ed210b4b1c81fbd6e4 Mon Sep 17 00:00:00 2001 From: Luke Morris <70283489+lukem12345@users.noreply.github.com> Date: Fri, 22 Nov 2024 22:57:59 -0500 Subject: [PATCH] Try parsing semicolon in acset_type. Not executed --- src/DenseACSets.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DenseACSets.jl b/src/DenseACSets.jl index fe82011..ac0f2b6 100644 --- a/src/DenseACSets.jl +++ b/src/DenseACSets.jl @@ -201,6 +201,7 @@ macro acset_type(head) end name, schema, idx_args = @match head′ begin Expr(:call, name, schema, idx_args...) => (name, schema, idx_args) + Expr(:call, name, idx_args, schema) => (name, schema, idx_args) _ => error("Unsupported head for @acset_type") end name′ = name