File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
uefi-test-runner/src/proto Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ impl ComponentNameInterface for ScopedProtocol<ComponentName1> {
28
28
boot:: open_protocol_exclusive :: < ComponentName1 > ( handle)
29
29
}
30
30
31
- fn supported_languages ( & self ) -> core:: result:: Result < LanguageIter , LanguageError > {
31
+ fn supported_languages ( & self ) -> core:: result:: Result < LanguageIter < ' _ > , LanguageError > {
32
32
( * * self ) . supported_languages ( )
33
33
}
34
34
@@ -51,7 +51,7 @@ impl ComponentNameInterface for ScopedProtocol<ComponentName2> {
51
51
boot:: open_protocol_exclusive :: < ComponentName2 > ( handle)
52
52
}
53
53
54
- fn supported_languages ( & self ) -> core:: result:: Result < LanguageIter , LanguageError > {
54
+ fn supported_languages ( & self ) -> core:: result:: Result < LanguageIter < ' _ > , LanguageError > {
55
55
( * * self ) . supported_languages ( )
56
56
}
57
57
@@ -74,7 +74,7 @@ impl ComponentNameInterface for ComponentName {
74
74
Self :: open ( handle)
75
75
}
76
76
77
- fn supported_languages ( & self ) -> core:: result:: Result < LanguageIter , LanguageError > {
77
+ fn supported_languages ( & self ) -> core:: result:: Result < LanguageIter < ' _ > , LanguageError > {
78
78
self . supported_languages ( )
79
79
}
80
80
You can’t perform that action at this time.
0 commit comments