Skip to content

Commit

Permalink
Linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
SharafMohamed committed Dec 8, 2024
1 parent 6e65a3e commit 9c2ad81
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/log_surgeon/finite_automata/DfaState.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ class DfaState {
public:
using Tree = UnicodeIntervalTree<DfaState*>;

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);
Expand Down

0 comments on commit 9c2ad81

Please sign in to comment.