Skip to content

Commit

Permalink
clean up warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dopsi committed Aug 19, 2019
1 parent 9bf9bc3 commit b9e3e34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::Updateable;

#[derive(Default)]
pub struct Circuit {
updater: Vec<Box<Updateable>>,
updater: Vec<Box<dyn Updateable>>,
}

impl Circuit {
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(nll, try_from, vec_remove_item)]
#![feature(vec_remove_item)]
#![warn(missing_docs)]

//! Logical is a digital network simulator. It is named after the german word "Logical" which
Expand Down

0 comments on commit b9e3e34

Please sign in to comment.