Skip to content

Commit

Permalink
Fix incorrectly copied code
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannier committed Mar 18, 2024
1 parent ae9bc56 commit 1a3f4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/CXXGraph/Graph/Graph_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ const std::unordered_set<shared<const Edge<T>>, edgeHash<T>>
Graph<T>::inOutEdges(const Node<T> *node) const {
auto node_shared = make_shared<const Node<T>>(*node);

return outEdges(node_shared);
return inOutEdges(node_shared);
}

template <typename T>
Expand Down

0 comments on commit 1a3f4f5

Please sign in to comment.