comparison rust/hg-core/src/dirstate/status.rs @ 44193:3c265cef6edc

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
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 27 Jan 2020 12:38:59 -0800
parents 8c77826116f7
children 0d97bcb3cee9
comparison
equal deleted inserted replaced
44192:d6d4170882cd 44193:3c265cef6edc
270 )) 270 ))
271 } 271 }
272 272
273 pub fn status<'a: 'c, 'b: 'c, 'c>( 273 pub fn status<'a: 'c, 'b: 'c, 'c>(
274 dmap: &'a DirstateMap, 274 dmap: &'a DirstateMap,
275 matcher: &'b (impl Matcher), 275 matcher: &'b impl Matcher,
276 root_dir: impl AsRef<Path> + Sync + Send + Copy, 276 root_dir: impl AsRef<Path> + Sync + Send + Copy,
277 list_clean: bool, 277 list_clean: bool,
278 last_normal_time: i64, 278 last_normal_time: i64,
279 check_exec: bool, 279 check_exec: bool,
280 ) -> IoResult<(Vec<&'c HgPath>, StatusResult<'c>)> { 280 ) -> IoResult<(Vec<&'c HgPath>, StatusResult<'c>)> {