-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fix drop order of JoinedCell fields #21
Conversation
00f5f82
to
543190b
Compare
Let me know if you agree with 2ca0660 |
Also do you think switching to ManuallyDrop would be worth it? We have pointers anyway, so the use seems limited to me. And I suspect this simple pointer based code is quite fast to compile. |
2ca0660 Seems like a valid approach as well. I’m not sure if it’d be superflous, but I’d feel even better if the code used |
Note that even without 2ca0660, drop order of fields is clearly specified. But with the In other words: I’m not quite sure if it makes a difference but if any version is sound then the current one with |
I, too, don’t really think using |
5f9e9a8
to
b3fc697
Compare
Squashed the commits a bit. |
Added another commit with more changes. I’m more confident that these operations are sound with |
Another usage of |
Did some more reading, turns out the
|
Co-authored-by: Lukas Bergdoll <lukas.bergdoll@gmail.com>
563bd44
to
ebbf355
Compare
Reduced usage of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, lgtm.
Closes #20