X-Git-Url: https://git.ralfj.de/web.git/blobdiff_plain/d53f1d8385a681a1cb961f0ac2bc88b7c772ebda..1fb33d7467db73706d143150cf56bca253c86830:/personal/_posts/2019-04-30-stacked-borrows-2.md diff --git a/personal/_posts/2019-04-30-stacked-borrows-2.md b/personal/_posts/2019-04-30-stacked-borrows-2.md index 5731826..669d49d 100644 --- a/personal/_posts/2019-04-30-stacked-borrows-2.md +++ b/personal/_posts/2019-04-30-stacked-borrows-2.md @@ -80,7 +80,7 @@ pub struct Stack { {% endhighlight %} The *tag* is also simpler than it was before: there are no longer separate tags for mutable and shared references. {% highlight rust %} -pub type PtrId = NonZeroU64; +pub type PtrId = u64; pub enum Tag { Tagged(PtrId), Untagged,