From 732c3eeafc14f9612eff43654f3bb7d7e5bc6faa Mon Sep 17 00:00:00 2001 From: Alex Jones Date: Thu, 14 Sep 2023 18:16:25 +0100 Subject: [PATCH] move back to macro --- src/systems/pde/pdesystem.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systems/pde/pdesystem.jl b/src/systems/pde/pdesystem.jl index acdd7946a4..0592b29af5 100644 --- a/src/systems/pde/pdesystem.jl +++ b/src/systems/pde/pdesystem.jl @@ -114,7 +114,7 @@ struct PDESystem <: ModelingToolkit.AbstractMultivariateSystem p = ps isa SciMLBase.NullParameters ? [] : map(a -> a.first, ps) args = vcat(DestructuredArgs(p), args) ex = Func(args, [], eq.rhs) |> toexpr - eq.lhs => drop_expr(RuntimeGeneratedFunction(@__MODULE__, @__MODULE__, ex)) + eq.lhs => drop_expr(@RuntimeGeneratedFunction(@__MODULE__, ex)) end end end