File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ void t_rr_graph_storage::apply_edge_permutation(const std::vector<RREdgeId>& edg
200200 // then builds the new vector to have rearranged elements from 'vec' and finally move the new vector
201201 // to replace vec. Essentially does a permutation on vec based on edge_indices.
202202 auto array_rearrange = [&edge_indices](auto & vec, auto default_value) {
203- // Since vec could have any type, we need to figure out it's type to allocate new_vec.
203+ // Since vec could have any type, we need to figure out its type to allocate new_vec.
204204 // The scary std::remove_reference stuff does exactly that. This does nothing other than building a new 'vec' sized vector.
205205 typename std::remove_reference<decltype (vec)>::type new_vec (vec.size (), default_value);
206206
You can’t perform that action at this time.
0 commit comments