Deny bare trait objects in src/bootstrap.

This commit is contained in:
ljedrz
2018-07-10 18:10:05 +02:00
parent 77117e3836
commit d1e3567250
4 changed files with 6 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ pub struct Builder<'a> {
pub top_stage: u32,
pub kind: Kind,
cache: Cache,
stack: RefCell<Vec<Box<Any>>>,
stack: RefCell<Vec<Box<dyn Any>>>,
time_spent_on_dependencies: Cell<Duration>,
pub paths: Vec<PathBuf>,
graph_nodes: RefCell<HashMap<String, NodeIndex>>,