Fixing #380 where const aggregates were copied by value.

This commit is contained in:
Christoffer Lerno
2022-01-20 16:52:28 +01:00
parent ec291d4a9d
commit dce33ba5b5
11 changed files with 43 additions and 9 deletions

View File

@@ -60,7 +60,7 @@ enum Seek
END = 2
}
errtype IoError
optenum IoError
{
FILE_NOT_FOUND,
FILE_NOT_SEEKABLE,

View File

@@ -25,7 +25,7 @@ enum AllocationKind
FREE,
}
errtype AllocationFailure
optenum AllocationFailure
{
OUT_OF_MEMORY
}