diff options
Diffstat (limited to 'crates/hir/src')
-rw-r--r-- | crates/hir/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index 2b2aaec94..30cc34403 100644 --- a/crates/hir/src/lib.rs +++ b/crates/hir/src/lib.rs | |||
@@ -234,8 +234,8 @@ impl Crate { | |||
234 | db.crate_graph()[self.id].cfg_options.clone() | 234 | db.crate_graph()[self.id].cfg_options.clone() |
235 | } | 235 | } |
236 | 236 | ||
237 | pub fn features(&self, db: &dyn HirDatabase) -> Vec<String> { | 237 | pub fn potential_cfg(&self, db: &dyn HirDatabase) -> CfgOptions { |
238 | db.crate_graph()[self.id].features.iter().map(|(feat, _)| feat.clone()).collect() | 238 | db.crate_graph()[self.id].potential_cfg_options.clone() |
239 | } | 239 | } |
240 | } | 240 | } |
241 | 241 | ||