Skip to content

Commit

Permalink
Linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
SharafMohamed committed Dec 5, 2024
1 parent c0920bf commit 19fe130
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/log_surgeon/LALR1Parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,7 @@ struct Item {
* Returns the next unmatched symbol in the production based on the dot.
* @return uint32_t
*/
[[nodiscard]] auto next_symbol() const -> uint32_t {
return m_production->m_body.at(m_dot);
}
[[nodiscard]] auto next_symbol() const -> uint32_t { return m_production->m_body.at(m_dot); }

Production* m_production;
uint32_t m_dot;
Expand Down

0 comments on commit 19fe130

Please sign in to comment.