Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
Fix compiler warning about dynamic dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkehayias committed Aug 30, 2019
1 parent 4c99d2c commit bca1705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::config::Environment;
/// AppComponent trait and adding it to the build via
/// the `component` method.
pub struct AppBuilder<'a> {
components: Vec<&'a AppComponent>,
components: Vec<&'a dyn AppComponent>,
files: Vec<FileUpload>,
}

Expand Down

0 comments on commit bca1705

Please sign in to comment.