Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfengHKU committed May 21, 2023
1 parent aa6d309 commit 9f6f0e5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/binder/visitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ add_library(

set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:kuzu_binder_visitor>
PARENT_SCOPE)
PARENT_SCOPE)
2 changes: 0 additions & 2 deletions src/include/binder/query/updating_clause/bound_set_clause.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ class BoundSetNodeProperty {
public:
BoundSetNodeProperty(std::shared_ptr<NodeExpression> node, expression_pair setItem)
: node{std::move(node)}, setItem{std::move(setItem)} {}
BoundSetNodeProperty(const BoundSetNodeProperty& boundSetNodeProperty)
: node{boundSetNodeProperty.node}, setItem(boundSetNodeProperty.setItem) {}

inline std::shared_ptr<NodeExpression> getNode() const { return node; }
inline expression_pair getSetItem() const { return setItem; }
Expand Down

0 comments on commit 9f6f0e5

Please sign in to comment.