Skip to content

Commit 00ce42c

Browse files
poyrazKgithub-actions[bot]
authored andcommitted
style: automated clang-format fixes
1 parent 9a7e35f commit 00ce42c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

tests/expression_tests.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -492,9 +492,9 @@ TEST(ExpressionTests, IsNotNullExprToString) {
492492

493493
TEST(ExpressionTests, ComplexArithmeticExpression) {
494494
// (5 + 3) * 2 = 16
495-
auto left = std::make_unique<BinaryExpr>(
496-
std::make_unique<ConstantExpr>(Value::make_int64(5)), TokenType::Plus,
497-
std::make_unique<ConstantExpr>(Value::make_int64(3)));
495+
auto left = std::make_unique<BinaryExpr>(std::make_unique<ConstantExpr>(Value::make_int64(5)),
496+
TokenType::Plus,
497+
std::make_unique<ConstantExpr>(Value::make_int64(3)));
498498
auto right = std::make_unique<ConstantExpr>(Value::make_int64(2));
499499
BinaryExpr expr(std::move(left), TokenType::Star, std::move(right));
500500

@@ -504,9 +504,9 @@ TEST(ExpressionTests, ComplexArithmeticExpression) {
504504

505505
TEST(ExpressionTests, ComplexLogicalExpression) {
506506
// (5 > 3) AND (2 < 10)
507-
auto left = std::make_unique<BinaryExpr>(
508-
std::make_unique<ConstantExpr>(Value::make_int64(5)), TokenType::Gt,
509-
std::make_unique<ConstantExpr>(Value::make_int64(3)));
507+
auto left = std::make_unique<BinaryExpr>(std::make_unique<ConstantExpr>(Value::make_int64(5)),
508+
TokenType::Gt,
509+
std::make_unique<ConstantExpr>(Value::make_int64(3)));
510510
auto right = std::make_unique<BinaryExpr>(
511511
std::make_unique<ConstantExpr>(Value::make_int64(2)), TokenType::Lt,
512512
std::make_unique<ConstantExpr>(Value::make_int64(10)));

0 commit comments

Comments
 (0)