223 |
// state is no longer safe to access.
|
224 |
#[allow(clippy::drop_ref)]
|
225 |
drop(state);
|
39 |
let _ = self.try_reserve(iter.size_hint().0);
|
40 |
#[allow(clippy::drop_ref)]
|
41 |
iter.for_each(|item| drop(self.push(item)));
|
135 |
#[cfg_attr(miri, ignore)]
|
136 |
#[allow(clippy::drop_ref)]
|
137 |
fn drop_sync() {
|
39 |
drop(lives_less);
|
40 |
#[allow(clippy::drop_ref)]
|
41 |
drop(lives_longer);
|
117 |
// TODO: handle multiple files
|
118 |
#[allow(clippy::drop_ref)]
|
119 |
pub fn format(&mut self) -> String {
|
10 |
// and the compiler is happy.
|
11 |
#[allow(clippy::drop_ref)]
|
12 |
std::mem::drop(clause);
|
466 |
// cannot be dropped early.
|
467 |
#[allow(clippy::drop_ref)]
|
468 |
drop(gen);
|
39 |
let _ = self.try_reserve(iter.size_hint().0);
|
40 |
#[allow(clippy::drop_ref)]
|
41 |
iter.for_each(|item| drop(self.push(item)));
|
48 |
let _ = self.try_reserve(iter.size_hint().0);
|
49 |
#[allow(clippy::drop_ref)]
|
50 |
iter.cloned().for_each(|item| drop(self.push(item)));
|
227 |
#[allow(clippy::drop_ref)]
|
228 |
fn poll_trailers(
|
146 |
#[allow(clippy::drop_ref)]
|
147 |
drop(preimages); // make sure we don't reference tree_data anymore
|
260 |
#[allow(clippy::drop_ref)]
|
261 |
fn poll_trailers(
|
227 |
#[allow(clippy::drop_ref)]
|
228 |
fn poll_trailers(
|
572 |
// dropping the ref )
|
573 |
#[allow(clippy::drop_ref)]
|
574 |
drop(gl);
|
15 |
#![allow(clippy::wildcard_imports)]
|
16 |
#![allow(clippy::drop_ref)]
|
17 |
#![allow(clippy::unsafe_derive_deserialize)]
|
4 |
#![allow(clippy::borrowed_box, clippy::drop_ref)]
|
45 |
clippy::redundant_clone,
|
46 |
clippy::drop_ref,
|
47 |
clippy::should_implement_trait,
|