Skip to content

Commit 78bde26

Browse files
authored
Merge pull request #448 from diffblue/AIG_HEADER
Fix two include header guards
2 parents bb97668 + 0c4c448 commit 78bde26

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/trans-netlist/aig.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Author: Daniel Kroening, [email protected]
99
/// \file
1010
/// AND-Inverter Graph
1111

12-
#ifndef CPROVER_SOLVERS_PROP_AIG_H
13-
#define CPROVER_SOLVERS_PROP_AIG_H
12+
#ifndef CPROVER_TRANS_NETLIST_AIG_H
13+
#define CPROVER_TRANS_NETLIST_AIG_H
1414

1515
#include <map>
1616
#include <set>
@@ -101,4 +101,4 @@ class aig_plus_constraintst : public aigt {
101101
}
102102
};
103103

104-
#endif // CPROVER_SOLVERS_PROP_AIG_H
104+
#endif // CPROVER_TRANS_NETLIST_AIG_H

src/trans-netlist/aig_prop.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Author: Daniel Kroening, [email protected]
66
77
\*******************************************************************/
88

9-
#ifndef CPROVER_SOLVERS_PROP_AIG_PROP_H
10-
#define CPROVER_SOLVERS_PROP_AIG_PROP_H
9+
#ifndef CPROVER_TRANS_NETLIST_AIG_PROP_H
10+
#define CPROVER_TRANS_NETLIST_AIG_PROP_H
1111

1212
#include <cassert>
1313

@@ -112,4 +112,4 @@ class aig_prop_solvert : public aig_prop_constraintt {
112112
std::vector<unsigned> &n_usage_count);
113113
};
114114

115-
#endif // CPROVER_SOLVERS_PROP_AIG_PROP_H
115+
#endif // CPROVER_TRANS_NETLIST_AIG_PROP_H

0 commit comments

Comments
 (0)