Skip to content

Commit

Permalink
Another unused variable fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgi Lomia committed Oct 7, 2021
1 parent 175a239 commit d4b8999
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tools/graph-stats/graph-memory-stats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -303,22 +303,22 @@ doMemoryAnalysis(const std::unique_ptr<katana::PropertyGraph> graph) {
katana::JsonDump(all_edge_alloc), outputfilename,
"default_edge_alloc.json");
KATANA_LOG_VASSERT(
all_edge_width_json_res, "unexpected errror {}",
all_edge_width_json_res.error());
all_edge_alloc_json_res, "unexpected errror {}",
all_edge_alloc_json_res.error());

auto all_node_usage_json_res = SaveToJson(
katana::JsonDump(all_node_usage), outputfilename,
"grouping_node_usage.json");
KATANA_LOG_VASSERT(
all_edge_width_json_res, "unexpected errror {}",
all_edge_width_json_res.error());
all_node_usage_json_res, "unexpected errror {}",
all_node_usage_json_res.error());

auto all_edge_usage_json_res = SaveToJson(
katana::JsonDump(all_edge_usage), outputfilename,
"grouping_edge_usage.json");
KATANA_LOG_VASSERT(
all_edge_width_json_res, "unexpected errror {}",
all_edge_width_json_res.error());
all_edge_usage_json_res, "unexpected errror {}",
all_edge_usage_json_res.error());
}

int
Expand Down

0 comments on commit d4b8999

Please sign in to comment.