From 65173f9717220115340c919eb746bc13386ee902 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Wed, 27 Feb 2013 15:43:21 -0800 Subject: [PATCH] cyclegraph: bugfix - allow to compile with SUPPORT_MOD_ORDER_DUMP I missed an include that is only used for the mod-order dump support code. --- cyclegraph.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/cyclegraph.cc b/cyclegraph.cc index eeec665..1dbb12d 100644 --- a/cyclegraph.cc +++ b/cyclegraph.cc @@ -3,6 +3,7 @@ #include "common.h" #include "promise.h" #include "model.h" +#include "threads-model.h" /** Initializes a CycleGraph object. */ CycleGraph::CycleGraph() : -- 2.34.1