1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: turn the pointer map notice into a warning and fix all code using it

This commit is contained in:
Alexander Medvednikov
2023-01-15 22:19:16 +01:00
parent e8108f21e0
commit aba7bcde85
5 changed files with 19 additions and 14 deletions

View File

@@ -1,10 +1,11 @@
## V 0.3.3
*Not yet released*
- add `math.vec` module for generic vector math.
- Accessing a pointer map value requires an `or{}` block outside `unsafe`.
- `math.vec` module for generic vector math.
- `go foo()` has been replaced with `spawn foo()` (launches an OS thread, `go` will be used for
upcoming coroutines instead).
- vfmt now supports `// vfmt off` and `// vfmt on` for turning off the formatting locally for *short* snippets of code. Useful for keeping your carefully arranged matrices intact.
- support match branch range expressions with consts: `match x { const1...const2 {} }`
- Match branch range expressions with consts: `match x { const1...const2 {} }`
## V 0.3.2
*31 Oct 2022*