Skip to content

Commit

Permalink
Fix comment length.
Browse files Browse the repository at this point in the history
  • Loading branch information
SharafMohamed committed Dec 6, 2024
1 parent 66ed13b commit a12a360
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/log_surgeon/finite_automata/RegexDFAState.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ class RegexDFAState {
private:
std::vector<uint32_t> m_matching_variable_ids;
RegexDFAState<stateType>* m_bytes_transition[cSizeOfByte];
// NOTE: We don't need m_tree_transitions for the `stateType ==
// RegexDFAStateType::Byte` case, so we use an empty class (`std::tuple<>`)
// in that case.
// NOTE: We don't need m_tree_transitions for the `stateType == RegexDFAStateType::Byte` case,
// so we use an empty class (`std::tuple<>`) in that case.
std::conditional_t<stateType == RegexDFAStateType::UTF8, Tree, std::tuple<>> m_tree_transitions;
};

Expand Down

0 comments on commit a12a360

Please sign in to comment.