Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/base-db/src/fixture.rs')
| -rw-r--r-- | crates/base-db/src/fixture.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/base-db/src/fixture.rs b/crates/base-db/src/fixture.rs index 69585b44a1..8e6e6a11ab 100644 --- a/crates/base-db/src/fixture.rs +++ b/crates/base-db/src/fixture.rs @@ -159,7 +159,7 @@ impl ChangeFixture { meta.cfg.clone(), meta.cfg, meta.env, - Default::default(), + Ok(Vec::new()), false, origin, ); @@ -194,7 +194,7 @@ impl ChangeFixture { default_cfg.clone(), default_cfg, Env::default(), - Default::default(), + Ok(Vec::new()), false, CrateOrigin::CratesIo { repo: None }, ); @@ -231,7 +231,7 @@ impl ChangeFixture { CfgOptions::default(), CfgOptions::default(), Env::default(), - Vec::new(), + Ok(Vec::new()), false, CrateOrigin::Lang(LangCrateOrigin::Core), ); @@ -268,7 +268,7 @@ impl ChangeFixture { CfgOptions::default(), CfgOptions::default(), Env::default(), - proc_macro, + Ok(proc_macro), true, CrateOrigin::CratesIo { repo: None }, ); |