Skip to content

Commit

Permalink
Merge pull request #4 from dopsi/master
Browse files Browse the repository at this point in the history
Clean up warnings
  • Loading branch information
hellow554 authored Aug 19, 2019
2 parents 9bf9bc3 + b9e3e34 commit a2c90f3
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 a2c90f3

Please sign in to comment.