From 1cab2f2d732afdcd236769462c59a72be702983a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 13 Jun 2018 07:41:39 -0700 Subject: [PATCH] Remove an unneeded comment. --- lib/codegen/src/settings.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/codegen/src/settings.rs b/lib/codegen/src/settings.rs index 2e6ad5f684..c11ca1a775 100644 --- a/lib/codegen/src/settings.rs +++ b/lib/codegen/src/settings.rs @@ -131,8 +131,6 @@ impl Configurable for Builder { let (offset, detail) = self.lookup(name)?; match detail { Detail::Bool { bit } => { - // Cannot currently propagate SetResult<()> up on functions returning () - // with the `?` operator self.set_bit(offset, bit, parse_bool_value(value)?); } Detail::Num => {