From f40e86e1412206dd3b097ef9bd0c22fd1c358293 Mon Sep 17 00:00:00 2001 From: Casey Primozic Date: Tue, 6 Oct 2020 15:19:34 -0700 Subject: `todo!()` -> `unimplemented!() // FIXME` for CI --- crates/hir_ty/src/traits/chalk.rs | 6 ++++-- crates/hir_ty/src/traits/chalk/mapping.rs | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/crates/hir_ty/src/traits/chalk.rs b/crates/hir_ty/src/traits/chalk.rs index 980218162..cbe5cd7dd 100644 --- a/crates/hir_ty/src/traits/chalk.rs +++ b/crates/hir_ty/src/traits/chalk.rs @@ -334,13 +334,15 @@ impl<'a> chalk_solve::RustIrDatabase for ChalkContext<'a> { &self, _: chalk_ir::GeneratorId, ) -> std::sync::Arc> { - todo!() + // FIXME + unimplemented!() } fn generator_witness_datum( &self, _: chalk_ir::GeneratorId, ) -> std::sync::Arc> { - todo!() + // FIXME + unimplemented!() } } diff --git a/crates/hir_ty/src/traits/chalk/mapping.rs b/crates/hir_ty/src/traits/chalk/mapping.rs index 140b20213..31c902de6 100644 --- a/crates/hir_ty/src/traits/chalk/mapping.rs +++ b/crates/hir_ty/src/traits/chalk/mapping.rs @@ -399,7 +399,7 @@ impl ToChalk for TypeCtor { // this should not be reached, since we don't represent TypeName::Error with TypeCtor unreachable!() } - _ => todo!(), + _ => unimplemented!(), // FIXME } } } -- cgit v1.2.3