Remove in_band_lifetimes
from rustc_incremental
This commit is contained in:
parent
8f117a77d0
commit
5e22500754
4 changed files with 7 additions and 8 deletions
|
@ -103,7 +103,7 @@ struct IfThisChanged<'tcx> {
|
|||
then_this_would_need: Targets,
|
||||
}
|
||||
|
||||
impl IfThisChanged<'tcx> {
|
||||
impl<'tcx> IfThisChanged<'tcx> {
|
||||
fn argument(&self, attr: &ast::Attribute) -> Option<Symbol> {
|
||||
let mut value = None;
|
||||
for list_item in attr.meta_item_list().unwrap_or_default() {
|
||||
|
@ -172,7 +172,7 @@ impl IfThisChanged<'tcx> {
|
|||
}
|
||||
}
|
||||
|
||||
impl Visitor<'tcx> for IfThisChanged<'tcx> {
|
||||
impl<'tcx> Visitor<'tcx> for IfThisChanged<'tcx> {
|
||||
type Map = Map<'tcx>;
|
||||
|
||||
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue