remove allow(dead_code) leftovers from serial/parallel compiler

This commit is contained in:
klensy
2025-06-22 13:05:09 +03:00
parent 3b97f1308f
commit 2ddbe39bfb
2 changed files with 0 additions and 4 deletions

View File

@@ -1,8 +1,6 @@
//! This module implements a lock which only uses synchronization if `might_be_dyn_thread_safe` is true.
//! It implements `DynSend` and `DynSync` instead of the typical `Send` and `Sync` traits.
#![allow(dead_code)]
use std::fmt;
#[derive(Clone, Copy, PartialEq)]

View File

@@ -1,8 +1,6 @@
//! This module defines parallel operations that are implemented in
//! one way for the serial compiler, and another way the parallel compiler.
#![allow(dead_code)]
use std::any::Any;
use std::panic::{AssertUnwindSafe, catch_unwind, resume_unwind};