From eda47b9eae38c33297a22d0161c14bbfbeb7fbd3 Mon Sep 17 00:00:00 2001 From: Marco Matthies <71844+marcom@users.noreply.github.com> Date: Thu, 20 Mar 2025 10:27:22 +0100 Subject: [PATCH] Make struct AnnualDate immutable --- src/core/utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/utils.jl b/src/core/utils.jl index 25d1b1d..2e12c66 100644 --- a/src/core/utils.jl +++ b/src/core/utils.jl @@ -26,7 +26,7 @@ Stores a month and a day, and can be compared against normal dates. To save typing, a Tuple{Int64,Int64} is automatically converted to an AnnualDate, allowing this syntax: `nestingend::AnnualDate = (August, 15)`. """ -mutable struct AnnualDate +struct AnnualDate month::Int64 day::Int64 -- GitLab