We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6be80d2 + b87736d commit 50737b6Copy full SHA for 50737b6
src/arc.rs
@@ -140,7 +140,6 @@ impl<T: ?Sized> Clone for Arc<T> {
140
unsafe { (*self.ptr).rc.fetch_add(1, Ordering::Relaxed) };
141
142
if last_count == usize::max_value() {
143
- #[cold]
144
std::process::abort();
145
}
146
src/config.rs
@@ -733,7 +733,6 @@ impl Config {
733
if ge.is_null() {
734
Ok(())
735
} else {
736
737
#[allow(unsafe_code)]
738
unsafe {
739
Err(ge.deref().clone())
0 commit comments