Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions input_buffer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -343,11 +343,11 @@ input_buffer::consume_char_literal(unsigned long long &outInt)
outInt = (unsigned char)((*this)[0]);
cursor++;

if(outInt != '\\')
if (outInt != '\\')
{
return true;
}
else if(cursor >= size)
else if (cursor >= size)
{
return false;
}
Expand Down Expand Up @@ -917,7 +917,7 @@ expression_ptr text_input_buffer::parse_expression(bool stopAtParen)
{
case '\'':
consume('\'');
if(!consume_char_literal(leftVal))
if (!consume_char_literal(leftVal))
{
return nullptr;
}
Expand Down
Loading