Convert the TODO into FIXME.

This commit is contained in:
Niko Matsakis 2015-01-06 17:32:43 -05:00
parent 279de38cc8
commit 3f1cf328b3

View file

@ -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()
}