Inline successor_within_block.

This commit is contained in:
Camille GILLOT 2023-05-03 18:40:09 +00:00
parent f83468c89b
commit b509e2dd00

View File

@ -1568,6 +1568,7 @@ impl Location {
///
/// Note that if this location represents a terminator, then the
/// resulting location would be out of bounds and invalid.
#[inline]
pub fn successor_within_block(&self) -> Location {
Location { block: self.block, statement_index: self.statement_index + 1 }
}