Skip to content

Commit

Permalink
fix clang
Browse files Browse the repository at this point in the history
  • Loading branch information
AEsir777 committed Sep 11, 2023
1 parent 5dd0b65 commit a7d989b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser/transform/transform_graph_pattern.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ std::unique_ptr<RelPattern> Transformer::transformRelationshipPattern(
recursiveRelName = transformVariable(*range->oC_Variable());
whereExpression = transformWhere(*range->oC_Where());
}
recursiveInfo = std::make_unique<RecursiveRelPatternInfo>(lowerBound, upperBound,
recursiveRelName, std::move(whereExpression));
recursiveInfo = std::make_unique<RecursiveRelPatternInfo>(
lowerBound, upperBound, recursiveRelName, std::move(whereExpression));
}
return std::make_unique<RelPattern>(variable, relTypes, relType, arrowDirection,
std::move(properties), std::move(recursiveInfo));
Expand Down

0 comments on commit a7d989b

Please sign in to comment.