Skip to content

Commit 7a158b0

Browse files
committed
Fix tidy error
1 parent b4b51d6 commit 7a158b0

File tree

1 file changed

+1
-1
lines changed
  • src/librustc_trans/debuginfo

1 file changed

+1
-1
lines changed

src/librustc_trans/debuginfo/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ pub fn create_function_debug_context<'a, 'tcx>(cx: &'a CodegenCx<'a, 'tcx>,
208208
llfn: ValueRef,
209209
mir: &'a mir::Mir<'tcx>) -> FunctionDebugContext {
210210
struct UnusedParamVisitor<'a, 'gcx: 'a + 'tcx, 'tcx: 'a>(TyCtxt<'a, 'gcx, 'tcx>, bool);
211-
impl<'a, 'gcx: 'a + 'tcx, 'tcx: 'a> TypeFolder<'gcx, 'tcx> for UnusedParamVisitor<'a, 'gcx, 'tcx> {
211+
impl<'a, 'gcx: 'tcx, 'tcx: 'a> TypeFolder<'gcx, 'tcx> for UnusedParamVisitor<'a, 'gcx, 'tcx> {
212212
fn tcx<'b>(&'b self) -> TyCtxt<'b, 'gcx, 'tcx> {
213213
self.0
214214
}

0 commit comments

Comments
 (0)