File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
include/behaviortree_cpp/scripting Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -279,9 +279,9 @@ struct ExprBinaryArithmetic : ExprBase
279
279
{
280
280
return Any (lhs_v.cast <std::string>() + rhs_v.cast <std::string>());
281
281
}
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 ())))
285
285
{
286
286
return Any (lhs_v.cast <std::string>() + rhs_v.cast <std::string>());
287
287
}
@@ -737,7 +737,7 @@ struct Expression : lexy::expression_production
737
737
static constexpr auto op = [] {
738
738
return dsl::op<Ast::ExprBinaryArithmetic::concat>(LEXY_LIT (" .." ));
739
739
}();
740
-
740
+
741
741
using operand = math_sum;
742
742
};
743
743
You can’t perform that action at this time.
0 commit comments