From 19fe130540d14d09d9f72f15fe020bd8eb2f753a Mon Sep 17 00:00:00 2001 From: SharafMohamed Date: Thu, 5 Dec 2024 18:35:36 -0500 Subject: [PATCH] Linter. --- src/log_surgeon/LALR1Parser.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/log_surgeon/LALR1Parser.hpp b/src/log_surgeon/LALR1Parser.hpp index eab6ab95..6417c3c6 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;