diff --git a/code/compiler/13/graph.hpp b/code/compiler/13/graph.hpp index 2807442..8a654aa 100644 --- a/code/compiler/13/graph.hpp +++ b/code/compiler/13/graph.hpp @@ -23,6 +23,8 @@ class function_graph { std::set functions; std::set adjacency_list; size_t indegree; + + group_data() : indegree(0) {} }; using data_ptr = std::shared_ptr;