Skip to content

Commit 5e668cb

Browse files
authored
Merge pull request #1 from seanng-1/ci-fixes
Linting
2 parents 568634d + 1093b4e commit 5e668cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/behaviortree_cpp/scripting/operators.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,9 +279,9 @@ struct ExprBinaryArithmetic : ExprBase
279279
{
280280
return Any(lhs_v.cast<std::string>() + rhs_v.cast<std::string>());
281281
}
282-
else if (op == concat && ((rhs_v.isString() && lhs_v.isString()) ||
283-
(rhs_v.isString() && lhs_v.isNumber()) ||
284-
(rhs_v.isNumber() && lhs_v.isString())))
282+
else if(op == concat && ((rhs_v.isString() && lhs_v.isString()) ||
283+
(rhs_v.isString() && lhs_v.isNumber()) ||
284+
(rhs_v.isNumber() && lhs_v.isString())))
285285
{
286286
return Any(lhs_v.cast<std::string>() + rhs_v.cast<std::string>());
287287
}
@@ -737,7 +737,7 @@ struct Expression : lexy::expression_production
737737
static constexpr auto op = [] {
738738
return dsl::op<Ast::ExprBinaryArithmetic::concat>(LEXY_LIT(".."));
739739
}();
740-
740+
741741
using operand = math_sum;
742742
};
743743

0 commit comments

Comments
 (0)