Skip to content

Commit

Permalink
clippy: Fix default_constructed_unit_structs warning.
Browse files Browse the repository at this point in the history
This warning is new in 1.71.
  • Loading branch information
waywardmonkeys committed Jul 23, 2023
1 parent 9b646ec commit e0c0147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use blitz_core::EventData;
use blitz_core::{render, Config, Driver};

pub async fn launch(app: Component<()>) {
launch_cfg(app, Config::default()).await
launch_cfg(app, Config).await
}

pub async fn launch_cfg(app: Component<()>, cfg: Config) {
Expand Down

0 comments on commit e0c0147

Please sign in to comment.