Skip to content

Commit 727d10b

Browse files
Fix a typo in an rr_graph_storage comment
1 parent 47aaae1 commit 727d10b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/librrgraph/src/base/rr_graph_storage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)