Skip to content

Commit 8890b7f

Browse files
committed
style: format code
1 parent 15b782d commit 8890b7f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/script_parser.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Expected<ScriptFunction> ParseScript(const std::string& script)
1818
auto input = lexy::string_input<lexy::utf8_encoding>(script);
1919

2020
auto reporter = ErrorReport().to(std::back_inserter(error_msgs_buffer));
21-
auto result =
22-
lexy::parse<BT::Grammar::stmt>(input, reporter);
21+
auto result = lexy::parse<BT::Grammar::stmt>(input, reporter);
2322
if(result.has_value() && result.error_count() == 0)
2423
{
2524
try

0 commit comments

Comments
 (0)