@@ -1911,8 +1911,8 @@ struct FileMetadata {
19111911}
19121912
19131913impl FileMetadata {
1914- fn from_path < ' tcx , ' mir > (
1915- ecx : & mut MiriInterpCx < ' mir , ' tcx > ,
1914+ fn from_path < ' tcx > (
1915+ ecx : & mut MiriInterpCx < ' _ , ' tcx > ,
19161916 path : & Path ,
19171917 follow_symlink : bool ,
19181918 ) -> InterpResult < ' tcx , Option < FileMetadata > > {
@@ -1922,8 +1922,8 @@ impl FileMetadata {
19221922 FileMetadata :: from_meta ( ecx, metadata)
19231923 }
19241924
1925- fn from_fd < ' tcx , ' mir > (
1926- ecx : & mut MiriInterpCx < ' mir , ' tcx > ,
1925+ fn from_fd < ' tcx > (
1926+ ecx : & mut MiriInterpCx < ' _ , ' tcx > ,
19271927 fd : i32 ,
19281928 ) -> InterpResult < ' tcx , Option < FileMetadata > > {
19291929 let option = ecx. machine . file_handler . handles . get ( & fd) ;
@@ -1936,8 +1936,8 @@ impl FileMetadata {
19361936 FileMetadata :: from_meta ( ecx, metadata)
19371937 }
19381938
1939- fn from_meta < ' tcx , ' mir > (
1940- ecx : & mut MiriInterpCx < ' mir , ' tcx > ,
1939+ fn from_meta < ' tcx > (
1940+ ecx : & mut MiriInterpCx < ' _ , ' tcx > ,
19411941 metadata : Result < std:: fs:: Metadata , std:: io:: Error > ,
19421942 ) -> InterpResult < ' tcx , Option < FileMetadata > > {
19431943 let metadata = match metadata {
0 commit comments