diff --git a/src/log_surgeon/LALR1Parser.hpp b/src/log_surgeon/LALR1Parser.hpp index eab6ab9..6417c3c 100644 --- a/src/log_surgeon/LALR1Parser.hpp +++ b/src/log_surgeon/LALR1Parser.hpp @@ -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;