mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-05 06:51:51 +00:00
Rename underscored lifetimes
See https://github.com/rust-lang/rfcs/pull/1177
This commit is contained in:
parent
50c0c36b6b
commit
331d5ea724
@ -7,7 +7,7 @@
|
|||||||
use fs::File;
|
use fs::File;
|
||||||
|
|
||||||
|
|
||||||
impl<'_> File<'_> {
|
impl<'a> File<'a> {
|
||||||
|
|
||||||
/// An “immediate” file is something that can be run or activated somehow
|
/// An “immediate” file is something that can be run or activated somehow
|
||||||
/// in order to kick off the build of a project. It’s usually only present
|
/// in order to kick off the build of a project. It’s usually only present
|
||||||
|
@ -3,7 +3,7 @@ use std::path::PathBuf;
|
|||||||
use fs::File;
|
use fs::File;
|
||||||
|
|
||||||
|
|
||||||
impl<'_> File<'_> {
|
impl<'a> File<'a> {
|
||||||
|
|
||||||
/// For this file, return a vector of alternate file paths that, if any of
|
/// For this file, return a vector of alternate file paths that, if any of
|
||||||
/// them exist, mean that *this* file should be coloured as “compiled”.
|
/// them exist, mean that *this* file should be coloured as “compiled”.
|
||||||
|
@ -86,8 +86,8 @@ impl FileFilter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Sort the files in the given vector based on the sort field option.
|
/// Sort the files in the given vector based on the sort field option.
|
||||||
pub fn sort_files<'_, F>(&self, files: &mut Vec<F>)
|
pub fn sort_files<'a, F>(&self, files: &mut Vec<F>)
|
||||||
where F: AsRef<File<'_>> {
|
where F: AsRef<File<'a>> {
|
||||||
|
|
||||||
files.sort_by(|a, b| self.compare_files(a.as_ref(), b.as_ref()));
|
files.sort_by(|a, b| self.compare_files(a.as_ref(), b.as_ref()));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user