From 9c2ad815702341124d70ef8c179ef30100904f43 Mon Sep 17 00:00:00 2001 From: SharafMohamed Date: Sun, 8 Dec 2024 04:14:24 -0500 Subject: [PATCH] Linter. --- src/log_surgeon/finite_automata/DfaState.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/log_surgeon/finite_automata/DfaState.hpp b/src/log_surgeon/finite_automata/DfaState.hpp index cbc62ad9..ca34a2ca 100644 --- a/src/log_surgeon/finite_automata/DfaState.hpp +++ b/src/log_surgeon/finite_automata/DfaState.hpp @@ -24,9 +24,7 @@ class DfaState { public: using Tree = UnicodeIntervalTree; - DfaState() { - std::fill(std::begin(m_bytes_transition), std::end(m_bytes_transition), nullptr); - } + DfaState() { std::fill(std::begin(m_bytes_transition), std::end(m_bytes_transition), nullptr); } auto add_matching_variable_id(uint32_t const variable_id) -> void { m_matching_variable_ids.push_back(variable_id);