File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ pub struct Scope<'a, Recorder: ProfilerCommandRecorder> {
12
12
pub scope : Option < GpuProfilerQuery > ,
13
13
}
14
14
15
- impl < ' a , R : ProfilerCommandRecorder > Drop for Scope < ' a , R > {
15
+ impl < R : ProfilerCommandRecorder > Drop for Scope < ' _ , R > {
16
16
#[ inline]
17
17
fn drop ( & mut self ) {
18
18
if let Some ( scope) = self . scope . take ( ) {
@@ -30,7 +30,7 @@ pub struct OwningScope<'a, Recorder: ProfilerCommandRecorder> {
30
30
pub scope : Option < GpuProfilerQuery > ,
31
31
}
32
32
33
- impl < ' a , R : ProfilerCommandRecorder > Drop for OwningScope < ' a , R > {
33
+ impl < R : ProfilerCommandRecorder > Drop for OwningScope < ' _ , R > {
34
34
#[ inline]
35
35
fn drop ( & mut self ) {
36
36
if let Some ( scope) = self . scope . take ( ) {
@@ -51,7 +51,7 @@ pub struct ManualOwningScope<'a, Recorder: ProfilerCommandRecorder> {
51
51
pub scope : Option < GpuProfilerQuery > ,
52
52
}
53
53
54
- impl < ' a , R : ProfilerCommandRecorder > ManualOwningScope < ' a , R > {
54
+ impl < R : ProfilerCommandRecorder > ManualOwningScope < ' _ , R > {
55
55
/// Ends the scope allowing the extraction of the owned [`ProfilerCommandRecorder`].
56
56
#[ track_caller]
57
57
#[ inline]
You can’t perform that action at this time.
0 commit comments