Skip to content

Commit

Permalink
Fix cpplint (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcui authored Dec 20, 2024
1 parent 071f637 commit 7197c9b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions procedures/algo_cpp/ktruss_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,11 @@ size_t KTrussCore(OlapBase<Empty> &graph, size_t value_k,
local_count = ktruss_count_common(src_adj, neighbour_adj, src, dst);
}
#if USING_CENTOS9
auto edge_data= edge.edge_data;
auto edge_data = edge.edge_data;
write_add(&edge_data, local_count);
#else
write_add(&edge.edge_data, local_count);
#endif

}
return 0;
},
Expand Down

0 comments on commit 7197c9b

Please sign in to comment.