diff options
author | flywind <xzsflywind@gmail.com> | 2022-01-16 18:08:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-16 11:08:38 +0100 |
commit | d102b2f54c41f19a0545f28109d0a93550b5d886 (patch) | |
tree | f2c7a89f3ed5d7488ac798d06aeca65e29fc0c68 /tests/errmsgs | |
parent | a95399143fdbd518f4d5fe33487b656c4cde7d6d (diff) | |
download | Nim-d102b2f54c41f19a0545f28109d0a93550b5d886.tar.gz |
deprecate unsafeAddr; extend addr (#19373)
* deprecate unsafeAddr; extend addr addr is now available for all addressable locations, unsafeAddr is deprecated and become an alias for addr * follow @Vindaar's advice * change the signature of addr * unsafeAddr => addr (stdlib) * Update changelog.md * unsafeAddr => addr (tests) * Revert "unsafeAddr => addr (stdlib)" This reverts commit ab83c99c507048a8396e636bf22d55fdd84d7d1c. * doc changes; thanks to @konsumlamm Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
Diffstat (limited to 'tests/errmsgs')
-rw-r--r-- | tests/errmsgs/t10594.nim | 2 | ||||
-rw-r--r-- | tests/errmsgs/tnon_concrete_cast.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/errmsgs/t10594.nim b/tests/errmsgs/t10594.nim index c9506c542..d27dd6433 100644 --- a/tests/errmsgs/t10594.nim +++ b/tests/errmsgs/t10594.nim @@ -3,5 +3,5 @@ discard """ line: 7 """ -template foo(v: varargs[int]) = unsafeAddr v +template foo(v: varargs[int]) = addr v foo(1, 2) diff --git a/tests/errmsgs/tnon_concrete_cast.nim b/tests/errmsgs/tnon_concrete_cast.nim index e4ae890ce..9e05c736c 100644 --- a/tests/errmsgs/tnon_concrete_cast.nim +++ b/tests/errmsgs/tnon_concrete_cast.nim @@ -34,7 +34,7 @@ proc write(rw: var MyReadWrite; value: SomeNumber): void = proc write[T](rw: var MyReadWrite; value: seq[T]): void = rw.write value.len let dst = cast[ptr SomeNumber](cast[uint](rw.memfile.mem) + uint(rw.offset)) - let src = cast[pointer](value[0].unsafeAddr) + let src = cast[pointer](value[0].addr) let size = sizeof(T) * value.len copyMem(dst, src, size) rw.offset += size |