We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15b782d commit 8890b7fCopy full SHA for 8890b7f
src/script_parser.cpp
@@ -18,8 +18,7 @@ Expected<ScriptFunction> ParseScript(const std::string& script)
18
auto input = lexy::string_input<lexy::utf8_encoding>(script);
19
20
auto reporter = ErrorReport().to(std::back_inserter(error_msgs_buffer));
21
- auto result =
22
- lexy::parse<BT::Grammar::stmt>(input, reporter);
+ auto result = lexy::parse<BT::Grammar::stmt>(input, reporter);
23
if(result.has_value() && result.error_count() == 0)
24
{
25
try
0 commit comments