Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 committed Dec 13, 2023
1 parent fb94944 commit 280f324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analytical_engine/core/io/property_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ inline bl::result<std::shared_ptr<detail::Graph>> ParseCreatePropertyGraph(
BOOST_LEAF_AUTO(compact_edges, params.Get<bool>(rpc::COMPACT_EDGES, false));
BOOST_LEAF_AUTO(use_perfect_hash,
params.Get<bool>(rpc::USE_PERFECT_HASH, false));
BOOST_LEAF_AUTO(extend_type, params.Get<int64_t>(rpc::EXTEND_LABEL_DATA));
BOOST_LEAF_AUTO(extend_type, params.Get<int64_t>(rpc::EXTEND_LABEL_DATA, 0));

auto graph = std::make_shared<detail::Graph>();
graph->directed = directed;
Expand Down

0 comments on commit 280f324

Please sign in to comment.