-
Notifications
You must be signed in to change notification settings - Fork 13.3k
liballoc, libunicode: Inline police. #23498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@bors: r+ rollup |
📌 Commit b86fbd0 has been approved by |
@@ -210,6 +210,18 @@ impl<T> Arc<T> { | |||
// contents. | |||
unsafe { &**self._ptr } | |||
} | |||
|
|||
// Non-inlined part of `drop`. | |||
unsafe fn drop_slow(&mut self) { |
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.
Should this be #[inline(never)]
?
☔ The latest upstream changes (presumably #23482) made this pull request unmergeable. Please resolve the merge conflicts. |
r? @cmr |
@bors: r+ rollup |
📌 Commit 01c125e has been approved by |
@@ -41,6 +41,426 @@ pub use normalize::{decompose_canonical, decompose_compatible, compose}; | |||
pub use tables::normalization::canonical_combining_class; | |||
pub use tables::UNICODE_VERSION; | |||
|
|||
#[cfg(stage0)] |
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.
Should this have a // SNAP
comment?
r? @cmr