Skip to content

Commit

Permalink
Fix initialization of pointer member (#3027)
Browse files Browse the repository at this point in the history
  • Loading branch information
czpmango authored Oct 11, 2021
1 parent 7ff852b commit db31363
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/graph/visitor/DeduceTypeVisitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ class DeduceTypeVisitor final : public ExprVisitor {
return type == Value::Type::NULLVALUE || type == Value::Type::__EMPTY__;
}

const QueryContext *qctx_;
const ValidateContext *vctx_;
const QueryContext *qctx_{nullptr};
const ValidateContext *vctx_{nullptr};
const ColsDef &inputs_;
GraphSpaceID space_;
Status status_;
Expand Down

0 comments on commit db31363

Please sign in to comment.