Remove unnecessary parens.

This commit is contained in:
Dan Gohman
2017-11-08 10:40:37 -08:00
parent d7796cbf25
commit 24e185c8c5

View File

@@ -38,7 +38,7 @@ pub fn builders() -> Result<(settings::Builder, isa::Builder), ()> {
let mut isa_builder = isa::lookup(name).map_err(|err| match err {
isa::LookupError::Unknown => panic!(),
isa::LookupError::Unsupported => (()),
isa::LookupError::Unsupported => (),
})?;
if cfg!(any(target_arch = "x86", target_arch = "x86_64")) {