Fix incorrect priority filtering. Move ??? to features.

This commit is contained in:
Christoffer Lerno
2025-08-30 13:22:10 +02:00
parent bc3d9d761f
commit b757f1447b
2 changed files with 2 additions and 2 deletions

View File

@@ -35,6 +35,7 @@
- Deprecated `@typeis` macro in favour of `$typeof(#foo) == int`.
- `$defined(#hash)` will not check the internal expression, just that `#hash` exists. Use `$defined((void)#hash)` for the old behaviour.
- Added optional macro arguments using `macro foo(int x = ...)` which can be checked using `$defined(x)`.
- Add compile time ternary `$val ??? <expr> : <expr>`.
### Fixes
- List.remove_at would incorrectly trigger ASAN.
@@ -84,7 +85,6 @@
- Fix correct `?` after optional function name when reporting type errors.
- Make `log` and `exp` no-strip.
- `@test`/`@benchmark` on module would attach to interface and regular methods.
- Add compile time ternary `$val ??? <expr> : <expr>`.
- Deprecated `@select` in favor of `???`.
### Stdlib changes