Skip to content

Commit dafd0d9

Browse files
committed
Fix includes for BDD_GUARDS
`guard_bddt` needs `bdd_exprt`, but failed to include the necessary header. Fixes: #7726
1 parent cfcfcf6 commit dafd0d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/analyses/guard_bdd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Author: Romain Brenguier, [email protected]
1313
#ifndef CPROVER_ANALYSES_GUARD_BDD_H
1414
#define CPROVER_ANALYSES_GUARD_BDD_H
1515

16-
#include <solvers/bdd/bdd.h> // IWYU pragma: keep
16+
#include <solvers/prop/bdd_expr.h>
1717

1818
class bdd_exprt;
1919
class exprt;

0 commit comments

Comments
 (0)