Skip to content

Commit fc35bed

Browse files
authored
Merge pull request #7727 from tautschnig/bugfixes/7726-guard-manager
Fix includes for BDD_GUARDS
2 parents be6bfca + 1315b61 commit fc35bed

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/analyses/guard.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ Author: Daniel Kroening, [email protected]
1414

1515
#ifdef BDD_GUARDS
1616

17-
#include "guard_bdd.h"
17+
# include <solvers/prop/bdd_expr.h>
18+
19+
# include "guard_bdd.h"
1820

1921
using guard_managert = bdd_exprt;
2022
using guardt = guard_bddt;

src/goto-instrument/goto_instrument_parse_options.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ Author: Daniel Kroening, [email protected]
5858
#include <analyses/dependence_graph.h>
5959
#include <analyses/escape_analysis.h>
6060
#include <analyses/global_may_alias.h>
61+
#include <analyses/guard.h>
6162
#include <analyses/interval_analysis.h>
6263
#include <analyses/interval_domain.h>
6364
#include <analyses/is_threaded.h>

0 commit comments

Comments
 (0)