Skip to content
Snippets Groups Projects
Commit eda47b9e authored by Marco Matthies's avatar Marco Matthies
Browse files

Make struct AnnualDate immutable

parent c55b58a4
Branches
Tags
No related merge requests found
...@@ -26,7 +26,7 @@ Stores a month and a day, and can be compared against normal dates. ...@@ -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 To save typing, a Tuple{Int64,Int64} is automatically converted to an
AnnualDate, allowing this syntax: `nestingend::AnnualDate = (August, 15)`. AnnualDate, allowing this syntax: `nestingend::AnnualDate = (August, 15)`.
""" """
mutable struct AnnualDate struct AnnualDate
month::Int64 month::Int64
day::Int64 day::Int64
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment