Skip to content

Commit

Permalink
Clang-format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lsileoni committed May 11, 2024
1 parent 381be5e commit dfeb428
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/config/TiniValidator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ class TiniValidator
{TiniNode::S_OBRACK, {TiniNode::S_OBRACK, TiniNode::S_VALID}},
{TiniNode::S_VALID, {TiniNode::S_VALID, TiniNode::S_DOT, TiniNode::S_CBRACK}},
{TiniNode::S_DOT, {TiniNode::S_VALID}},
{TiniNode::S_CBRACK, {TiniNode::S_CBRACK}}};
{TiniNode::S_CBRACK, {TiniNode::S_CBRACK}}
};
std::map<int, std::vector<int>> _value_transitions = {
{TiniNode::S_ISPRINT, {TiniNode::S_ISPRINT, TiniNode::S_EQ}},
{TiniNode::S_EQ, {TiniNode::S_ISPRINT}}};
{TiniNode::S_EQ, {TiniNode::S_ISPRINT}}
};
std::map<int, std::vector<int>>::iterator _map_idx;
int _cur_state = TiniNode::S_NONE;
int _next_state = TiniNode::S_NONE;
Expand Down

0 comments on commit dfeb428

Please sign in to comment.