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.
1 parent a1ab026 commit cfe9549Copy full SHA for cfe9549
collector/src/compile/execute/bencher.rs
@@ -272,7 +272,11 @@ impl<'a> Processor for BenchProcessor<'a> {
272
}
273
274
/// Uploads self-profile results to S3
275
-struct SelfProfileS3Upload(std::process::Child, tempfile::NamedTempFile);
+struct SelfProfileS3Upload(
276
+ std::process::Child,
277
+ // This field is used only for its Drop impl
278
+ #[allow(unused)] tempfile::NamedTempFile,
279
+);
280
281
impl SelfProfileS3Upload {
282
fn new(
0 commit comments