Skip to content

Commit

Permalink
2023 day 16: fix compilation error missed in ae0e6bc
Browse files Browse the repository at this point in the history
  • Loading branch information
yut23 committed Dec 17, 2024
1 parent 7614af1 commit 96ca1e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2023/src/day16.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ struct GraphHelper {
}

std::set<std::pair<int, int>> edges;
std::tie(components, edges) = aoc::graph::tarjan_scc<Key>(
std::tie(components, edges) = aoc::graph::tarjan_scc(
sources, [this](const Key &key, auto &&handler) {
process_neighbors(key, handler);
});
Expand Down

0 comments on commit 96ca1e7

Please sign in to comment.