1
Fork 0

rustc: remove 'x: 'y bounds (except from comments/strings).

This commit is contained in:
Eduard-Mihai Burtescu 2019-06-14 19:39:39 +03:00
parent 44fb88d252
commit b25b466a88
154 changed files with 305 additions and 305 deletions

View file

@ -27,7 +27,7 @@ use std::iter::TrustedLen;
// All Builders must have an llfn associated with them
#[must_use]
pub struct Builder<'a, 'll: 'a, 'tcx: 'll> {
pub struct Builder<'a, 'll, 'tcx> {
pub llbuilder: &'ll mut llvm::Builder<'ll>,
pub cx: &'a CodegenCx<'ll, 'tcx>,
}