Skip to content

Commit

Permalink
Linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
SharafMohamed committed Dec 5, 2024
1 parent 61ceba6 commit 0e1e2b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/log_surgeon/Lexer.tpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ auto Lexer<NfaStateType, DfaStateType>::scan(ParserInputBuffer& input_buffer, To
while (true) {
auto prev_byte_buf_pos = input_buffer.storage().pos();
auto next_char{utf8::cCharErr};
if (auto const err = input_buffer.get_next_character(next_char); ErrorCode::Success != err) {
if (auto const err = input_buffer.get_next_character(next_char); ErrorCode::Success != err)
{
m_asked_for_more_data = true;
m_prev_state = state;
return err;
Expand Down

0 comments on commit 0e1e2b2

Please sign in to comment.