diff options
author | Florian Diebold <[email protected]> | 2019-07-14 17:21:50 +0100 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-07-14 17:22:47 +0100 |
commit | e2bce9e7ebd1879825f74aa34329911a6d3efa79 (patch) | |
tree | e500aabd12cb0deaec259ba9de1238adbaf44bc1 /crates/ra_hir/src/ty | |
parent | 1e60ba892793932dff57fd3357616f56e664bdcc (diff) |
Cargo update, including updating Chalk
Diffstat (limited to 'crates/ra_hir/src/ty')
-rw-r--r-- | crates/ra_hir/src/ty/traits/chalk.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_hir/src/ty/traits/chalk.rs b/crates/ra_hir/src/ty/traits/chalk.rs index 1b9ae8dc1..203ec3b1b 100644 --- a/crates/ra_hir/src/ty/traits/chalk.rs +++ b/crates/ra_hir/src/ty/traits/chalk.rs | |||
@@ -460,6 +460,7 @@ pub(crate) fn trait_datum_query( | |||
460 | associated_ty_ids: Vec::new(), | 460 | associated_ty_ids: Vec::new(), |
461 | where_clauses: Vec::new(), | 461 | where_clauses: Vec::new(), |
462 | flags: chalk_rust_ir::TraitFlags { | 462 | flags: chalk_rust_ir::TraitFlags { |
463 | non_enumerable: false, | ||
463 | auto: false, | 464 | auto: false, |
464 | marker: false, | 465 | marker: false, |
465 | upstream: true, | 466 | upstream: true, |
@@ -477,6 +478,7 @@ pub(crate) fn trait_datum_query( | |||
477 | auto: trait_.is_auto(db), | 478 | auto: trait_.is_auto(db), |
478 | upstream: trait_.module(db).krate(db) != Some(krate), | 479 | upstream: trait_.module(db).krate(db) != Some(krate), |
479 | // FIXME set these flags correctly | 480 | // FIXME set these flags correctly |
481 | non_enumerable: false, | ||
480 | marker: false, | 482 | marker: false, |
481 | fundamental: false, | 483 | fundamental: false, |
482 | }; | 484 | }; |