# HG changeset patch # User Martin von Zweigbergk # Date 1580157539 28800 # Node ID 3c265cef6edc396216f1bd397ca7adc2326b182a # Parent d6d4170882cd8b8ed4d2b67d69bbb46d4c54cb32 rust: remove an unnecessary set of parentheses My build complained about this. I guess it started after I upgraded rustc. Differential Revision: https://phab.mercurial-scm.org/D8020 diff -r d6d4170882cd -r 3c265cef6edc rust/hg-core/src/dirstate/status.rs --- a/rust/hg-core/src/dirstate/status.rs Mon Jan 27 18:16:05 2020 -0800 +++ b/rust/hg-core/src/dirstate/status.rs Mon Jan 27 12:38:59 2020 -0800 @@ -272,7 +272,7 @@ pub fn status<'a: 'c, 'b: 'c, 'c>( dmap: &'a DirstateMap, - matcher: &'b (impl Matcher), + matcher: &'b impl Matcher, root_dir: impl AsRef + Sync + Send + Copy, list_clean: bool, last_normal_time: i64,