From 96ca1e7c45043d329e2447645cdb0485eccd13a1 Mon Sep 17 00:00:00 2001 From: yut23 Date: Mon, 16 Dec 2024 20:52:38 -0500 Subject: [PATCH] 2023 day 16: fix compilation error missed in ae0e6bc --- 2023/src/day16.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2023/src/day16.hpp b/2023/src/day16.hpp index 6d1ad26..9670cfb 100644 --- a/2023/src/day16.hpp +++ b/2023/src/day16.hpp @@ -205,7 +205,7 @@ struct GraphHelper { } std::set> edges; - std::tie(components, edges) = aoc::graph::tarjan_scc( + std::tie(components, edges) = aoc::graph::tarjan_scc( sources, [this](const Key &key, auto &&handler) { process_neighbors(key, handler); });