Skip to content

Commit

Permalink
CR comment
Browse files Browse the repository at this point in the history
Signed-off-by: Elazar Gershuni <[email protected]>
  • Loading branch information
elazarg committed Nov 22, 2024
1 parent 5caf644 commit eff7e07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/crab/cfg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,12 +429,12 @@ class basic_block_t final {

[[nodiscard]]
label_t first_label() const {
return m_ts.at(0);
return m_ts.front();
}

[[nodiscard]]
label_t last_label() const {
return m_ts.at(m_ts.size() - 1);
return m_ts.back();
}

[[nodiscard]]
Expand Down

0 comments on commit eff7e07

Please sign in to comment.