From d62d4953d29462fe1e4af04e6016160d25bb0a71 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 29 Dec 2014 11:02:24 -0500 Subject: [PATCH] Add a FIXME to patch up rustdoc --- src/librustdoc/clean/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/librustdoc/clean/mod.rs b/src/librustdoc/clean/mod.rs index b4bfaa9afdab..467f34261ba7 100644 --- a/src/librustdoc/clean/mod.rs +++ b/src/librustdoc/clean/mod.rs @@ -506,7 +506,9 @@ impl<'tcx> Clean> for ty::ExistentialBounds<'tcx> { for bb in self.builtin_bounds.iter() { vec.push(bb.clean(cx)); } - // TODO projection bounds + + // FIXME(#20299) -- should do something with projection bounds + vec } }