Skip to content

Commit

Permalink
Removing unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Oct 19, 2023
1 parent f61c2bd commit 50bce4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apex/tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ std::atomic<size_t> node::count{0};
node * node::buildTree(std::vector<std::vector<std::string>>& rows,
node * root) {
if(rows.size() == 0) return root;
size_t rank = stol(rows[0][0]);
//size_t rank = stol(rows[0][0]);
size_t index = stol(rows[0][1]);
size_t pindex = stol(rows[0][2]);
//size_t depth = stol(rows[0][3]);
Expand Down

0 comments on commit 50bce4f

Please sign in to comment.