Fix definition of LocalUseMapBuild so that it can build under stage0,

which does not have as many feature gates enabled.
This commit is contained in:
Felix S. Klock II 2018-08-28 10:59:15 +02:00
parent 09feec6d5c
commit 8d231ec872

View File

@ -97,7 +97,7 @@ impl LocalUseMap<'me> {
}
}
struct LocalUseMapBuild<'me, 'map> {
struct LocalUseMapBuild<'me, 'map: 'me> {
local_use_map: &'me mut LocalUseMap<'map>,
elements: &'me RegionValueElements,
}