From aa0283cd6e227ebf14c129873c23e854fb26102f Mon Sep 17 00:00:00 2001 From: Marco Matthies <71844+marcom@users.noreply.github.com> Date: Thu, 18 Jul 2024 15:29:25 +0200 Subject: [PATCH] Fix macros to not reference ALMaSS submodule This change must have slipped in previously when I first introduced the ALMaSS submodule. --- src/nature/macros.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nature/macros.jl b/src/nature/macros.jl index b9345b8..add747c 100644 --- a/src/nature/macros.jl +++ b/src/nature/macros.jl @@ -342,7 +342,7 @@ This is a utility wrapper that can only be used nested within [`@phase`](@ref) or [`@habitat`](@ref). """ macro cropname() - :(ALMaSS.cropname($(esc(:pos)), $(esc(:model)))) + :(cropname($(esc(:pos)), $(esc(:model)))) end """ @@ -353,7 +353,7 @@ This is a utility wrapper that can only be used nested within [`@phase`](@ref) or [`@habitat`](@ref). """ macro cropheight() - :(ALMaSS.cropheight($(esc(:pos)), $(esc(:model)))) + :(cropheight($(esc(:pos)), $(esc(:model)))) end """ -- GitLab