rust/hg-core/src/dirstate_tree/dirstate_map.rs
changeset 47477 eb416759af7e
parent 47474 c657beacdf2e
child 47478 ca8121d26732
equal deleted inserted replaced
47476:f23eafb036af 47477:eb416759af7e
   975         self.clear_known_ambiguous_mtimes(&paths)?;
   975         self.clear_known_ambiguous_mtimes(&paths)?;
   976 
   976 
   977         on_disk::write(self, parents)
   977         on_disk::write(self, parents)
   978     }
   978     }
   979 
   979 
   980     fn set_all_dirs(&mut self) -> Result<(), DirstateError> {
       
   981         // Do nothing, this `DirstateMap` does not a separate `all_dirs` that
       
   982         // needs to be recomputed
       
   983         Ok(())
       
   984     }
       
   985 
       
   986     fn set_dirs(&mut self) -> Result<(), DirstateError> {
       
   987         // Do nothing, this `DirstateMap` does not a separate `dirs` that needs
       
   988         // to be recomputed
       
   989         Ok(())
       
   990     }
       
   991 
       
   992     fn status<'a>(
   980     fn status<'a>(
   993         &'a mut self,
   981         &'a mut self,
   994         matcher: &'a (dyn Matcher + Sync),
   982         matcher: &'a (dyn Matcher + Sync),
   995         root_dir: PathBuf,
   983         root_dir: PathBuf,
   996         ignore_files: Vec<PathBuf>,
   984         ignore_files: Vec<PathBuf>,