From 3f1cf328b3d7c21d4e43f2a90cd7e83fb863b81f Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 6 Jan 2015 17:32:43 -0500 Subject: [PATCH] Convert the TODO into FIXME. --- src/librustc/middle/ty.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc/middle/ty.rs b/src/librustc/middle/ty.rs index 4ccb399c17cf..b07315605e46 100644 --- a/src/librustc/middle/ty.rs +++ b/src/librustc/middle/ty.rs @@ -1470,12 +1470,12 @@ impl<'tcx> PolyTraitRef<'tcx> { } pub fn substs(&self) -> &'tcx Substs<'tcx> { - // TODO every use of this fn is probably a bug, it should yield Binder<> + // FIXME(#20664) every use of this fn is probably a bug, it should yield Binder<> self.0.substs } pub fn input_types(&self) -> &[Ty<'tcx>] { - // TODO every use of this fn is probably a bug, it should yield Binder<> + // FIXME(#20664) every use of this fn is probably a bug, it should yield Binder<> self.0.input_types() }